Class: Tram::Policy
- Inherits:
-
Object
- Object
- Tram::Policy
- Extended by:
- Dry::Initializer, DSL
- Defined in:
- lib/tram/policy.rb,
lib/tram/policy/dsl.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: DSL, Inflector Classes: Error, Errors, Generator, ValidationError, Validator
Instance Method Summary collapse
-
#errors ⇒ Tram::Policy::Errors
Collection of validation errors.
-
#inspect ⇒ String
Human-readable representation of the policy.
-
#invalid?(&filter) ⇒ Boolean
Checks whether the policy is invalid.
-
#t(message, **options) ⇒ String
Translates a message in the scope of current policy.
-
#valid?(&filter) ⇒ Boolean
Checks whether the policy is valid.
-
#validate!(&filter) ⇒ nil
Raises exception if the policy is not valid.
Methods included from DSL
[], local_validators, scope, validate, validators
Instance Method Details
#errors ⇒ Tram::Policy::Errors
Collection of validation errors
33 34 35 |
# File 'lib/tram/policy.rb', line 33 def errors @errors ||= Errors.new(self) end |
#inspect ⇒ String
Human-readable representation of the policy
73 74 75 |
# File 'lib/tram/policy.rb', line 73 def inspect "#<#{self.class.name}[#{__attributes__}]>" end |
#invalid?(&filter) ⇒ Boolean
Checks whether the policy is invalid
51 52 53 |
# File 'lib/tram/policy.rb', line 51 def invalid?(&filter) filter ? errors.any?(&filter) : errors.any? end |
#t(message, **options) ⇒ String
Translates a message in the scope of current policy
24 25 26 27 |
# File 'lib/tram/policy.rb', line 24 def t(, **) return .to_s unless .is_a? Symbol I18n.t , scope: self.class.send(:scope), ** end |
#valid?(&filter) ⇒ Boolean
Checks whether the policy is valid
42 43 44 |
# File 'lib/tram/policy.rb', line 42 def valid?(&filter) filter ? errors.reject(&filter).empty? : errors.empty? end |
#validate!(&filter) ⇒ nil
Raises exception if the policy is not valid
61 62 63 |
# File 'lib/tram/policy.rb', line 61 def validate!(&filter) raise ValidationError.new(self, filter) unless valid?(&filter) end |