Class: Dry::Validation::Messages::Resolver

Inherits:
Object
  • Object
show all
Defined in:
lib/dry/validation/messages/resolver.rb

Overview

Resolve translated messages from failure arguments

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(messages) ⇒ Resolver

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.

Returns a new instance of Resolver.



18
19
20
# File 'lib/dry/validation/messages/resolver.rb', line 18

def initialize(messages)
  @messages = messages
end

Instance Attribute Details

#messagesObject (readonly)



15
16
17
# File 'lib/dry/validation/messages/resolver.rb', line 15

def messages
  @messages
end

Instance Method Details

#call(message:, tokens:, path:, meta: EMPTY_HASH) ⇒ Message, Message::Localized Also known as: []

Resolve Message object from provided args and path

This is used internally by contracts when rules are applied



29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# File 'lib/dry/validation/messages/resolver.rb', line 29

def call(message:, tokens:, path:, meta: EMPTY_HASH)
  case message
  when Symbol
    Message[->(**opts) { message(message, path: path, tokens: tokens, **opts) }, path, meta]
  when String
    Message[message, path, meta]
  when Hash
    meta = message.dup
    text = meta.delete(:text)
    call(message: text, tokens: tokens, path: path, meta: meta)
  else
    raise ArgumentError, <<~STR
      +message+ must be either a Symbol, String or Hash (#{message.inspect} given)
    STR
  end
end

#message(rule, tokens: EMPTY_HASH, locale: nil, full: false, path:) ⇒ String

Resolve a message

rubocop:disable Metrics/AbcSize

Returns:

  • (String)


54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# File 'lib/dry/validation/messages/resolver.rb', line 54

def message(rule, tokens: EMPTY_HASH, locale: nil, full: false, path:)
  keys = path.to_a.compact
  msg_opts = tokens.merge(path: keys, locale: locale || messages.default_locale)

  if keys.empty?
    template, meta = messages["rules.#{rule}", msg_opts]
  else
    template, meta = messages[rule, msg_opts.merge(path: keys.join(DOT))]
    template, meta = messages[rule, msg_opts.merge(path: keys.last)] unless template
  end

  unless template
    raise MissingMessageError, <<~STR
      Message template for #{rule.inspect} under #{keys.join(DOT).inspect} was not found
    STR
  end

  text = template.(template.data(tokens))

  [full ? "#{messages.rule(keys.last, msg_opts)} #{text}" : text, meta]
end