Sha256: f6694b04da84a536bfbf62a9f424e519a7eb07a2666ef0f69f6682069faa59b8

Contents?: true

Size: 1.03 KB

Versions: 6

Compression:

Stored size: 1.03 KB

Contents

# frozen_string_literal: true

module WCC::Contentful::App
  # Raised by {WCC::Contentful.validate_models!} if a content type in the space
  # does not match the validation defined on the associated model.
  class ValidationError < StandardError
    Message =
      Struct.new(:path, :error) do
        def to_s
          "#{path}: #{error}"
        end
      end

    attr_reader :errors

    def initialize(errors)
      @errors = ValidationError.join_msg_keys(errors)
      super("Content Type Schema from Contentful failed validation!\n  #{@errors.join("\n  ")}")
    end

    # Turns the error messages hash into an array of message structs like:
    # menu.fields.name.type: must be equal to String
    def self.join_msg_keys(hash)
      ret =
        hash.map do |k, v|
          if v.is_a?(Hash)
            msgs = join_msg_keys(v)
            msgs.map { |msg| Message.new(k.to_s + '.' + msg.path, msg.error) }
          else
            v.map { |msg| Message.new(k.to_s, msg) }
          end
        end
      ret.flatten(1)
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
wcc-contentful-app-0.4.0.pre.rc lib/wcc/contentful/app/exceptions.rb
wcc-contentful-app-0.4.0.pre.alpha lib/wcc/contentful/app/exceptions.rb
wcc-contentful-app-0.3.0.pre.rc3 lib/wcc/contentful/app/exceptions.rb
wcc-contentful-app-0.3.0.pre.rc2 lib/wcc/contentful/app/exceptions.rb
wcc-contentful-app-0.3.0.pre.rc lib/wcc/contentful/app/exceptions.rb
wcc-contentful-app-0.2.2 lib/wcc/contentful/app/exceptions.rb