class Nexmo::OAS::Renderer::ResponseParserDecorator

Public Instance Methods

formatted_json() click to toggle source
# File lib/nexmo/oas/renderer/decorators/response_parser_decorator.rb, line 11
def formatted_json
  JSON.neat_generate(parse, {
                       wrap: true,
                       after_colon: 1,
                     })
end
formatted_xml(xml_options = {}) click to toggle source
# File lib/nexmo/oas/renderer/decorators/response_parser_decorator.rb, line 18
def formatted_xml(xml_options = {})
  xml_options[:root] = xml_options['name'] if xml_options
  xml_string = xml(xml_options)
  xml_string.gsub!(%r{^(\s+?)(<(?:\w|=|"|_|\s)+?>)(.+?)(</.+?>)}).each do |s|
    indentation = Regexp.last_match(1)
    indentation_plus_one = "#{Regexp.last_match(1)}  "
    opening_tag = Regexp.last_match(2)
    content = Regexp.last_match(3)
    closing_tag = Regexp.last_match(4)

    next(s) if (indentation.size + opening_tag.size + content.size) < 60

    next "#{indentation}#{opening_tag}\n#{indentation_plus_one}#{content}\n#{indentation}#{closing_tag}"
  end

  xml_string.gsub('<', '&lt;')
end
html(format = 'application/json', xml_options: nil, theme_light: nil) click to toggle source
# File lib/nexmo/oas/renderer/decorators/response_parser_decorator.rb, line 36
        def html(format = 'application/json', xml_options: nil, theme_light: nil)
          case format
          when 'application/json'
            language = 'json'
            response = formatted_json
          when 'text/xml', 'application/xml'
            language = 'xml'
            response = formatted_xml(xml_options)
          end

          output = <<~HEREDOC
            <pre class="pre-wrap language-#{language}  #{theme_light ? 'Vlt-prism--dark' : ''} Vlt-prism--copy-disabled"><code>#{response}</code></pre>
          HEREDOC

          output
        end