Sha256: fecb52374b296bff332e198f89191abbd2a0243b21f4b64c3c2fce538aab086f

Contents?: true

Size: 1.38 KB

Versions: 63

Compression:

Stored size: 1.38 KB

Contents

module Rack
  module PactBroker
    # If the HTML and the CSV group resources are both requested by the browser,
    # Chrome gets confused by the content types, and when you click back, it tries to load the CSV
    # instead of the HTML page. So we have to give the CSV resource a different URL (.csv)
    # Update: this should be fixed by lib/rack/pact_broker/add_vary_header.rb, but may as well
    # leave it now!

    class ConvertFileExtensionToAcceptHeader

      EXTENSION_REGEXP = /\.\w+$/.freeze
      EXTENSIONS = {
        ".csv" => "text/csv",
        ".svg" => "image/svg+xml",
        ".json" => "application/hal+json",
        ".yaml" => "application/yaml"
      }

      def initialize app
        @app = app
      end

      def call env
        file_extension = extension(env)
        if convert_to_accept_header? file_extension
          @app.call(set_accept_header_and_path_info(env, file_extension))
        else
          @app.call(env)
        end
      end

      def convert_to_accept_header? file_extension
        EXTENSIONS[file_extension]
      end

      def extension env
        env["PATH_INFO"] =~ EXTENSION_REGEXP && $~[0]
      end

      def set_accept_header_and_path_info env, file_extension
        env.merge(
          "PATH_INFO" => env["PATH_INFO"].gsub(EXTENSION_REGEXP, ''),
          "HTTP_ACCEPT" => EXTENSIONS[file_extension]
        )
      end
    end
  end
end

Version data entries

63 entries across 63 versions & 1 rubygems

Version Path
pact_broker-2.79.1 lib/rack/pact_broker/convert_file_extension_to_accept_header.rb
pact_broker-2.79.0 lib/rack/pact_broker/convert_file_extension_to_accept_header.rb
pact_broker-2.78.1 lib/rack/pact_broker/convert_file_extension_to_accept_header.rb
pact_broker-2.78.0 lib/rack/pact_broker/convert_file_extension_to_accept_header.rb
pact_broker-2.77.0 lib/rack/pact_broker/convert_file_extension_to_accept_header.rb
pact_broker-2.76.2 lib/rack/pact_broker/convert_file_extension_to_accept_header.rb
pact_broker-2.76.1 lib/rack/pact_broker/convert_file_extension_to_accept_header.rb
pact_broker-2.76.0 lib/rack/pact_broker/convert_file_extension_to_accept_header.rb
pact_broker-2.75.0 lib/rack/pact_broker/convert_file_extension_to_accept_header.rb
pact_broker-2.74.1 lib/rack/pact_broker/convert_file_extension_to_accept_header.rb
pact_broker-2.74.0 lib/rack/pact_broker/convert_file_extension_to_accept_header.rb
pact_broker-2.73.0 lib/rack/pact_broker/convert_file_extension_to_accept_header.rb
pact_broker-2.72.0 lib/rack/pact_broker/convert_file_extension_to_accept_header.rb
pact_broker-2.71.0 lib/rack/pact_broker/convert_file_extension_to_accept_header.rb
pact_broker-2.70.0 lib/rack/pact_broker/convert_file_extension_to_accept_header.rb
pact_broker-2.69.0 lib/rack/pact_broker/convert_file_extension_to_accept_header.rb
pact_broker-2.68.1 lib/rack/pact_broker/convert_file_extension_to_accept_header.rb
pact_broker-2.68.0 lib/rack/pact_broker/convert_file_extension_to_accept_header.rb
pact_broker-2.67.0 lib/rack/pact_broker/convert_file_extension_to_accept_header.rb
pact_broker-2.66.0 lib/rack/pact_broker/convert_file_extension_to_accept_header.rb