Sha256: 0655ef07383fbd3a6c756eaf2ba28f4219acc2f3134373ddf4bb03946f9a8d84

Contents?: true

Size: 1.74 KB

Versions: 14

Compression:

Stored size: 1.74 KB

Contents

# frozen_string_literal: true

require 'grape/util/lazy_object'

module Grape
  module Http
    module Headers
      # https://github.com/rack/rack/blob/master/lib/rack.rb
      HTTP_VERSION    = 'HTTP_VERSION'
      PATH_INFO       = 'PATH_INFO'
      REQUEST_METHOD  = 'REQUEST_METHOD'
      QUERY_STRING    = 'QUERY_STRING'
      CONTENT_TYPE    = 'Content-Type'

      GET     = 'GET'
      POST    = 'POST'
      PUT     = 'PUT'
      PATCH   = 'PATCH'
      DELETE  = 'DELETE'
      HEAD    = 'HEAD'
      OPTIONS = 'OPTIONS'

      SUPPORTED_METHODS = [GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS].freeze
      SUPPORTED_METHODS_WITHOUT_OPTIONS = Grape::Util::LazyObject.new { [GET, POST, PUT, PATCH, DELETE, HEAD].freeze }

      HTTP_ACCEPT_VERSION    = 'HTTP_ACCEPT_VERSION'
      X_CASCADE              = 'X-Cascade'
      HTTP_TRANSFER_ENCODING = 'HTTP_TRANSFER_ENCODING'
      HTTP_ACCEPT            = 'HTTP_ACCEPT'

      FORMAT                 = 'format'

      HTTP_HEADERS = Grape::Util::LazyObject.new do
        common_http_headers = %w[
          Version
          Host
          Connection
          Cache-Control
          Dnt
          Upgrade-Insecure-Requests
          User-Agent
          Sec-Fetch-Dest
          Accept
          Sec-Fetch-Site
          Sec-Fetch-Mode
          Sec-Fetch-User
          Accept-Encoding
          Accept-Language
          Cookie
        ].freeze
        common_http_headers.each_with_object({}) do |header, response|
          response["HTTP_#{header.upcase.tr('-', '_')}"] = header
        end.freeze
      end

      def self.find_supported_method(route_method)
        Grape::Http::Headers::SUPPORTED_METHODS.detect { |supported_method| supported_method.casecmp(route_method).zero? }
      end
    end
  end
end

Version data entries

14 entries across 14 versions & 2 rubygems

Version Path
grape-1.8.0 lib/grape/http/headers.rb
grape-1.7.1 lib/grape/http/headers.rb
grape-1.7.0 lib/grape/http/headers.rb
grape-1.6.2 lib/grape/http/headers.rb
grape-1.6.1 lib/grape/http/headers.rb
grape-1.6.0 lib/grape/http/headers.rb
grape-1.5.3 lib/grape/http/headers.rb
grape-1.5.2 lib/grape/http/headers.rb
grape-1.5.1 lib/grape/http/headers.rb
grape-1.5.0 lib/grape/http/headers.rb
grape-extra_validators-2.0.0 vendor/bundle/ruby/2.6.0/gems/grape-1.4.0/lib/grape/http/headers.rb
grape-1.4.0 lib/grape/http/headers.rb
grape-1.3.3 lib/grape/http/headers.rb
grape-1.3.2 lib/grape/http/headers.rb