Permittable

Gem Version CI License: MIT

Strong parameters for Rails that also know types, bounds, and defaults.

params.permit answers exactly one question: which keys may pass? Everything else — is age really a number, is email shaped like an email, what should plan be when the client omits it, and why was this request rejected — is left to you, usually as hand-written checks scattered through the action.

A Permittable contract answers those questions too. It casts each field to a declared type, validates it, applies defaults, optionally reshapes the output, and turns every failure into a machine-readable 422 that names the offending parameter.

And because a contract is class-level data rather than code inside the action, it can be inspected — and checked against your database when the controller loads, so a column dropped by a migration fails the deploy instead of the request.

class UsersController < ApplicationController
  include Permittable

  permit_params :create, :update, root: :user, model: User do
    required :name,  :string,  length: 1..80, normalize: :squish
    required :email, :string,  format: URI::MailTo::EMAIL_REGEXP, normalize: :email
    optional :age,   :integer, in: 18..120
    optional :ssn,   :string,  sensitive: true          # auto-redacted from logs
    optional :plan,  :string,  in: %w[free pro], default: "free"
    array    :tag_names, of: :string, length: 0..10, virtual: true
    optional :address do
      required :city, :string
      optional :zip,  :string, format: /\A\d{5}\z/
    end
  end

  def create
    User.create!(permitted_params)   # cast, validated, defaulted
  end
end

A violating request never reaches your action:

{ "success": false,
  "error": { "message": "Invalid parameters: user.age (inclusion)",
             "code": "invalid_parameters",
             "details": [{ "param": "user.age", "code": "inclusion" }] } }

Contents


Why

params.permit params.expect (Rails 8) Permittable
Filters unknown keys
Requires a root key via require
Casts to a declared type
Validates bounds, formats, sets
Supplies defaults
Machine-readable error details
Reshapes output
Checked against your schema at boot

The design rests on one idea: a contract is data, not code. It is declared once at the class level, frozen, inheritable, and introspectable. Everything else here follows from that — the drift guard can read it at boot, finalize can run on a bare object with no controller state, and the whole contract can be printed or tested without a request.

Installation

gem "permittable"

Then include it wherever you need it — typically once in ApplicationController:

class ApplicationController < ActionController::Base
  include Permittable
end

The only runtime dependency is activesupport. actionpack (for rescue_from, before_action, and ActionController::Parameters) and activerecord (for the model: schema-drift guard) are optional — every touchpoint is guarded with respond_to?/defined?, so your app brings whatever it already has. The concern works on a plain Ruby object that responds to params, which is what makes it straightforward to unit-test.

Naming note: some legacy stacks (InheritedResources) define their own permitted_params. Don't include both on one controller.

How a request flows

params
  │
  ├─ 1. unwrap root:          params[:user]        → 400 if missing or not a hash
  ├─ 2. per field:  normalize → cast → validate → transform
  ├─ 3. unknown-key check     at every nesting level
  ├─ 4. finalize              only if nothing violated
  │
  └─ permitted_params → HashWithIndifferentAccess     (or raises InvalidParameters)

Validation is lazy by default: it runs on the first permitted_params call, so an action that never reads params never pays for it. Pass enforce: true to run it in a before_action instead, rejecting bad requests before the action body executes. Results are memoized per action.

Declaring a contract

permit_params(*actions, root: false, model: nil, unknown: :ignore, enforce: false, &contract)
Option Default Meaning
*actions Actions the contract covers. No actions = catch-all for the controller
root: false Key to unwrap first (the require(:user) equivalent). Missing or non-hash root → 400
model: nil Model class, or true to infer from controller_name, enabling the drift guard
unknown: :ignore :ignore / :log / :error — how to treat undeclared keys
enforce: false false validates lazily on first use; true validates in a before_action

permit_params is repeatable, and the last matching rule wins. Contracts behave like configuration: a base controller declares a catch-all, and a subclass overrides it for specific actions.

class ApiController < ApplicationController
  permit_params(unknown: :error) { optional :page, :integer, in: 1..1000 }   # catch-all
end

class ReportsController < ApiController
  permit_params :export, root: :report do                                    # wins for #export
    required :format, :string, in: %w[csv pdf]
  end
end

Rules accumulate by reassignment, never mutation, so subclasses inherit copy-on-write and can never corrupt a parent's contract.

The field DSL

Scalars

required :name, :string          # type defaults to :string
optional :age,  :integer

Nested hashes

Pass a block instead of a type. Violation paths are dotted (user.address.zip).

optional :address do
  required :city, :string
  optional :zip,  :string, format: /\A\d{5}\z/
end

Arrays

of: declares an array of scalars; a block declares an array of hashes. Arrays are optional unless required: true, length: constrains the element count, and element failures carry their index (items[1]).

array :tag_names, of: :string, length: 0..10
array :line_items, required: true do
  required :sku,      :string
  required :quantity, :integer, in: 1..99
end

Field options

Which options are legal depends on the field kind — anything else raises at class load.

Option Scalar Array Nested Meaning
in: Allowed values: a Range (bounds-checked with cover?) or an Array
format: ✅¹ Regexp the value must match
length: ✅¹ Range or Integer. Character count on strings, element count on arrays
normalize: ✅¹ :squish, :strip, :downcase, :upcase, :email, or a Proc. Runs before the cast
default: Value used when the field is absent. Validated against the field's own contract at class load
validate: Callable. Falsy fails as "invalid"; a returned Symbol becomes the violation code
transform: Callable applied after cast and validation — see output reshaping
virtual: Exempt this field from the schema-drift guard
sensitive: Register the field name for log redaction
message: Human-readable copy for violations on this field — a String, or a Hash of code → String. See custom messages
of: Element type for an array of scalars (default :string)
required: Arrays are optional unless this is true

¹ format:, length:, and normalize: reason about characters and are only valid on :string fields. On any other type they would silently apply to an already-cast value, so declaring them raises at class load.

validate: is the escape hatch for anything the built-ins don't cover:

optional :slug, :string, validate: ->(v) { v.match?(/\A[a-z0-9-]+\z/) || :malformed_slug }

Types and strict coercion

Coercion is deliberately strict, and deliberately not ActiveModel::Type. Rails' casts are lenient by design — "abc".to_i is 0, Boolean.cast("abc") is true — and silently corrupting untrusted input is precisely what a contract must not do. A value the type cannot faithfully represent is a violation, not a guess.

Type Accepts Rejects (invalid_type)
:string String; Numeric/true/false are stringified Arrays, hashes
:integer Integer; whole Floats (4.0); base-10 numeric strings "4.5", "abc", 4.5
:float Numeric; any Float()-parseable string "abc"
:decimal Numeric or StringBigDecimal Unparseable strings
:boolean true/false, "true"/"false", "1"/"0", 1/0 "yes", "on", 2
:date Date; any Date.parse-able string Unparseable strings
:datetime Time, DateTime, ActiveSupport::TimeWithZone, Date, parseable strings Unparseable strings

Two behaviours worth committing to memory:

  • Type confusion is a violation, not a 500. A request of ?age[]=1 against a scalar :integer field yields invalid_type. Arrays, hashes, and nested ActionController::Parameters can never satisfy a scalar type, so the classic "NoMethodError on []" crash is impossible.
  • Datetimes are normalised to UTC. A zoneless string parses as UTC regardless of the host timezone, which keeps behaviour deterministic across machines; explicit offsets are honoured and converted.

Absence, defaults, and partial updates

nil and "" are both treated as absent — the query-parameter convention, where an untouched form field arrives as an empty string. Boolean false is present.

That single rule produces the behaviour you want from a PATCH:

  • An absent optional field is omitted from the result, so partial updates never nil-out columns.
  • An absent required field violates with missing.
  • An absent field with a default: gets the default — so a defaulted field can never report missing. (Declaring required: alongside default: is a class-load error, since a default implies optionality.)

Because absence and nil are the same thing here, clearing a column to NULL is outside a contract's vocabulary. Do that explicitly in the action.

Defaults are checked against the field's own contract when the class loads, so default: "gold" on a field declared in: %w[free pro] fails at boot rather than on every request.

Violations and error responses

Every failure raises Permittable::InvalidParameters, carrying details (an array of { param:, code: }, plus a message: when the field declares one) and a status. On a real controller it is auto-rescued into the error envelope.

Code Raised when
missing A required field is absent, or the root: key is missing (this one is a 400)
invalid_type The value cannot be faithfully cast to the declared type
inclusion The value is outside in:
format The value doesn't match format:
length A string's length, or an array's element count, is outside length:
unknown An undeclared key was sent while unknown: :error
invalid A validate: callable returned a falsy value
your symbol A validate: callable returned a Symbol, or violate! was called in finalize

Paths are fully qualified: user.address.zip, line_items[1].sku.

Status codes: a missing root key renders 400 (the request is malformed — the envelope you asked for isn't there); field-level violations render 422 (well-formed, semantically wrong).

Custom rendering: if your controller defines render_error, the envelope delegates to it as render_error(message:, code:, status:, errors:) — the errors: key is passed only when details exist, so hosts documenting a three-keyword contract keep working. Otherwise the inline JSON shape shown at the top of this README is rendered. Either way, render_invalid_parameters is a normal method you can override.

Custom error messages (message:)

Violations stay machine-first — the code is the contract — but any field can attach human-readable copy with message:. A String covers every code on the field; a Hash of code → String targets specific codes, and codes without an entry keep the default rendering:

permit_params :create, root: :user do
  required :email, :string, format: URI::MailTo::EMAIL_REGEXP,
                            message: { missing: "is required", format: "must be a valid email address" }
  optional :age,   :integer, in: 18..120, message: "must be between 18 and 120"
  array    :tags,  of: :string, length: 0..10, message: "must be at most ten tags"
end

A resolved message rides into the violation detail and replaces the (code) part of the exception's summary line, so both the envelope's message and its details read naturally:

{ "success": false,
  "error": { "message": "Invalid parameters: user.email must be a valid email address",
             "code": "invalid_parameters",
             "details": [{ "param": "user.email", "code": "format",
                           "message": "must be a valid email address" }] } }

The rules:

  • Messages are written to read after the param name: "is required", not "Email is required".
  • A Hash key matches the violation code, including Symbol codes returned by validate:validate: ->(v) { v.even? || :must_be_even }, message: { must_be_even: "must be an even number" }.
  • An array's message covers the array's own violations (length, invalid_type, missing) and its elements' (tags[3]); sub-fields of a nested block resolve their own message: declarations.
  • violate! in finalize takes the same idea as a keyword: violate!("user.ends_at", :before_start, message: "must be after starts_at").
  • A message: that is neither a String nor a code → String Hash raises at class load, like every other contract mistake.

Fields without a message: are untouched — their details keep the bare { param:, code: } shape. For full control over the response body itself (localization, RFC 9457, a different envelope), override render_invalid_parameters or define render_error as described above; error.details gives you the structured violations to build from.

Unknown parameters

unknown: decides what happens to keys you never declared, at every nesting level.

Mode Behaviour
:ignore (default) Silently dropped, exactly like strong parameters
:log Dropped, with a logger.warn naming the full paths
:error Each undeclared key becomes an unknown violation

Rails merges controller, action, and format into params; these are exempt at the top level so unknown: :error doesn't flag the router's own bookkeeping. Inside a root: or a nested hash there is no such exemption, because nothing legitimately injects keys there.

Output reshaping (transform: and finalize)

This is the safe replacement for params-mutating before_actions. Both layers operate on the validated copy — the request's params is never touched.

transform: — per field

A callable applied after cast and validation, reshaping one field's output:

required :tags, :string, transform: ->(v) { v.split(",") }

It runs only on request-supplied values. Absent fields stay absent, default: values are authored in their final shape, and a partially-invalid array is never transformed — user code is never handed garbage it didn't agree to see.

finalize — per contract

Declared once, at the top level only. It runs after every field has validated cleanly, receives the result hash, and must return the final Hash. Use it to combine parallel fields, build value objects, or drop scaffolding keys.

It executes on a bare runner, not the controller, so contracts stay pure data plus pure functions and can never grow a dependency on request state. Its one extra verb is violate!(param, code, message: nil), which records a violation (the optional message: rides into the detail) and halts the block immediately — so the code after a violate! may assume the invariant it just checked. That makes finalize the natural home for cross-field validation (ends_at after starts_at, matching array lengths).

permit_params :create, root: :lease_addendum_form do
  required :resident_signatures, :string, transform: ->(v) { v.split("<<delimiter>>") }
  required :signer_names,        :string, transform: ->(v) { v.split(",") }

  finalize do |p|
    unless p[:signer_names].length == p[:resident_signatures].length
      violate!("lease_addendum_form.signer_names", :length_mismatch)
    end

    p[:signatures] = p[:resident_signatures].zip(p[:signer_names]).map do |image, name|
      Signature.new(image: image, full_name: name)
    end
    p.except(:resident_signatures, :signer_names)
  end
end

Forgetting to return the hash raises an ArgumentError telling you exactly that.

The schema-drift guard

This is why model: exists. Pass a model class (or true to infer it from controller_name) and every non-virtual scalar field is checked against the model's columns when the macro runs — that is, at controller class load.

Production eager-loads controllers, so a column dropped by a migration fails the deploy, not the request:

Permittable: 'nickname' does not exist in the database (table: users).
Add it with: bin/rails generate migration AddNicknameToUsers nickname:string
If this parameter is not backed by a column, declare it with virtual: true.

The error carries a ready-to-paste migration command, typed from your own field declaration.

  • Fields not backed by a columnpassword_confirmation, terms checkboxes, search filters — opt out with virtual: true.
  • Nested and array fields are implicitly virtual, since only scalars map one-to-one onto columns.
  • The check skips when the schema is unreachable (db:create, a fresh db:migrate, assets:precompile, CI bootstrap), so controller classes stay loadable. Skipping is self-healing: once the migration runs and classes reload, the check happens for real. A missing column with a reachable schema still raises — the rescue is scoped to ActiveRecord::ActiveRecordError precisely so real bugs keep surfacing.

In CI, one spec calling Rails.application.eager_load! exercises every contract in the whole app.

Sensitive parameters and log redaction

Mark a field sensitive: true and its name is registered with Permittable.filter_parameter_registry; Permittable::Railtie appends a filter proc to config.filter_parameters at boot.

optional :ssn, :string, sensitive: true

The indirection is deliberate. Appending plain symbols to config.filter_parameters at class-load time misses every consumer that snapshots the list at boot — ActiveRecord's filter_attributes copy, lograge-style initializers, precompiled filters. A single proc appended once at boot, consulting a live registry at filter time, means fields registered when a controller loads later (lazy loading in development) are still redacted. The initializer runs before active_record.set_filter_attributes, so values are redacted from both request logs and #inspect.

Matching mirrors Rails' own symbol-filter semantics: case-insensitive substring match on the parameter key. The registry is fully duck-typed (#add, #include?, #to_proc, #reset!) and swappable via Permittable.filter_parameter_registry=, so a host gem can pool registrations into its own.

Instrumentation

Every violation emits an ActiveSupport::Notifications event, so rejected requests can be dashboarded and alerted on:

ActiveSupport::Notifications.subscribe("invalid_parameters.permittable") do |*, payload|
  payload[:controller]  # "users"
  payload[:action]      # "create"
  payload[:details]     # [{ param: "user.age", code: "inclusion" }]
end

API reference

Instance methods

Method Purpose
permitted_params(action = action_name) The cast, validated, defaulted HashWithIndifferentAccess. Memoized per action. Raises InvalidParameters on violation, or ArgumentError when no contract covers the action
enforce_params_contract The before_action entry point. Only validates rules declared enforce: true. Public, so hosts can skip_before_action it
render_invalid_parameters(error) The rescue_from target. Renders via the host's render_error when defined, the inline envelope otherwise

Class methods

Method Purpose
permit_params(*actions, **opts, &contract) Declare a contract
permittable_contracts The frozen array of every declared rule — introspectable, testable
permit_rule_for(action) The last rule matching action, or nil

Module

| | | |---|---| | Permittable.filter_parameter_registry | The live registry of sensitive: field names | | Permittable.filter_parameter_registry= | Swap in your own duck-typed registry | | Permittable::InvalidParameters | Raised on violation; carries #details and #status |

Errors caught at class load

A bad contract is a programmer error, so it fails when the class loads — never at request time. Every message names the field and explains the fix.

  • A field declared twice in one contract
  • An unknown option for the field's kind, listing what is allowed
  • An unknown type, listing the supported ones
  • An unknown normalize: preset, listing the presets
  • format:, length:, or normalize: on a non-:string field
  • length: that isn't a Range or Integer; in: that doesn't respond to include?
  • validate: or transform: that isn't callable
  • A default: that violates its own field's contract, or an array default: whose elements violate of:
  • required: true combined with default:
  • A field given both a type and a nested block; an array given both of: and a block
  • An empty contract, or a nested block declaring no sub-fields
  • finalize declared twice, without a block, or inside a nested block
  • permit_params without a block, or an invalid unknown: mode
  • A model: that isn't an ActiveRecord class, or model: true that can't be inferred

Compatibility

| | | |---|---| | Ruby | >= 3.2 | | Rails / ActiveSupport | >= 5.0, < 9 | | Required dependency | activesupport only | | Optional | actionpack (rendering, before_action), activerecord (drift guard) |

Using concerns_on_rails? ConcernsOnRails::Controllers::Permittable is an alias for this module, and sensitive: registrations pool into that gem's shared filter registry.

Development

bundle install
bundle exec rspec      # 76 examples
bundle exec rubocop

Releases are automated: bump lib/permittable/version.rb, add a CHANGELOG.md section, then push a vX.Y.Z tag. CI publishes to RubyGems via trusted publishing (OIDC — no API keys stored) and creates the GitHub release.

License

MIT.