Class: Kontena::Cli::Stacks::YAML::Validations::CustomValidators::ExtendsValidator

Inherits:
HashValidator::Validator::Base
  • Object
show all
Defined in:
lib/kontena/cli/stacks/yaml/custom_validators/extends_validator.rb

Instance Method Summary collapse

Constructor Details

#initializeExtendsValidator

Returns a new instance of ExtendsValidator.



3
4
5
# File 'lib/kontena/cli/stacks/yaml/custom_validators/extends_validator.rb', line 3

def initialize
  super('stacks_valid_extends')
end

Instance Method Details

#validate(key, value, validations, errors) ⇒ Object



7
8
9
10
11
12
13
14
15
16
17
18
19
20
# File 'lib/kontena/cli/stacks/yaml/custom_validators/extends_validator.rb', line 7

def validate(key, value, validations, errors)
  unless value.is_a?(String) || value.is_a?(Hash)
    errors[key] = 'extends must be string or hash'
    return
  end
  if value.is_a?(Hash)
    extends_validation = {
      'service' => 'string',
      'file' => HashValidator.optional('string'),
      'stack' => HashValidator.optional('string')
    }
    HashValidator.validator_for(extends_validation).validate(key, value, extends_validation, errors)
  end
end