Class: Tram::Policy

Inherits:
Object
  • Object
show all
Extended by:
Dry::Initializer
Defined in:
lib/tram/policy.rb,
lib/tram/policy/error.rb,
lib/tram/policy/errors.rb,
lib/tram/policy/generator.rb,
lib/tram/policy/inflector.rb,
lib/tram/policy/validator.rb,
lib/tram/policy/validation_error.rb

Overview

Base class for policy objects with composable validation errors

Defined Under Namespace

Modules: Inflector Classes: Error, Errors, Generator, ValidationError, Validator

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.[](*args) ⇒ Tram::Policy

Policy constructor/validator (alias for [.new])

Parameters:

  • *args (Object)

Returns:



32
33
34
# File 'lib/tram/policy.rb', line 32

def [](*args)
  new(*args)
end

.validate(name = nil, **opts, &block) ⇒ self

Registers a validator

Parameters:

  • names (#to_sym, Array<#to_sym>)
  • opts (Hash)

    a customizable set of options

Options Hash (**opts):

  • :stop_on_failure (Boolean)

Returns:

  • (self)


22
23
24
25
# File 'lib/tram/policy.rb', line 22

def validate(name = nil, **opts, &block)
  local << Validator.new(scope, name, block, opts)
  self
end

Instance Method Details

#errorsTram::Policy::Errors

Collection of validation errors



66
67
68
# File 'lib/tram/policy.rb', line 66

def errors
  @errors ||= Errors.new(self)
end

#inspectString

Human-readable representation of the policy

Examples:

Displays policy name and its attributes

UserPolicy[name: "Andy"].inspect
# => #<UserPolicy["name" => "Andy"]>

Returns:

  • (String)


106
107
108
# File 'lib/tram/policy.rb', line 106

def inspect
  "#<#{self.class.name}[#{@__options__}]>"
end

#invalid?(&filter) ⇒ Boolean

Checks whether the policy is invalid

Parameters:

  • filter (Proc, nil)

    Block describing **the only errors to count**

Returns:

  • (Boolean)


84
85
86
# File 'lib/tram/policy.rb', line 84

def invalid?(&filter)
  filter ? errors.any?(&filter) : errors.any?
end

#t(message, **options) ⇒ String

Translates a message in the scope of current policy

Parameters:

  • message (#to_s)
  • options (Hash<Symbol, Object>)

Returns:

  • (String)


57
58
59
60
# File 'lib/tram/policy.rb', line 57

def t(message, **options)
  return message.to_s unless message.is_a? Symbol
  I18n.t message, options.merge(scope: @__scope__)
end

#valid?(&filter) ⇒ Boolean

Checks whether the policy is valid

Parameters:

  • filter (Proc, nil)

    Block describing **errors to be skipped**

Returns:

  • (Boolean)


75
76
77
# File 'lib/tram/policy.rb', line 75

def valid?(&filter)
  filter ? errors.reject(&filter).empty? : errors.empty?
end

#validate!(&filter) ⇒ nil

Raises exception if the policy is not valid

Parameters:

  • filter (Proc, nil)

    Block describing **errors to be skipped**

Returns:

  • (nil)

    if the policy is valid

Raises:



94
95
96
# File 'lib/tram/policy.rb', line 94

def validate!(&filter)
  raise ValidationError.new(self, filter) unless valid?(&filter)
end