Sha256: dc0fe1be77de5abe80d74eecb47da3125530cec9822bf61954ea16e8fe14d774

Contents?: true

Size: 1.77 KB

Versions: 29

Compression:

Stored size: 1.77 KB

Contents

require 'rack/utils'

module Hanami
  module Http
    # An HTTP status
    #
    # @since 0.1.0
    # @api private
    class Status
      # A set of standard codes and messages for HTTP statuses
      #
      # @since 0.1.0
      # @api private
      ALL = ::Rack::Utils::HTTP_STATUS_CODES.dup.merge({
        103 => 'Checkpoint',
        122 => 'Request-URI too long',
        413 => 'Payload Too Large',                            # Rack 1.5 compat
        414 => 'URI Too Long',                                 # Rack 1.5 compat
        416 => 'Range Not Satisfiable',                        # Rack 1.5 compat
        418 => 'I\'m a teapot',
        420 => 'Enhance Your Calm',
        444 => 'No Response',
        449 => 'Retry With',
        450 => 'Blocked by Windows Parental Controls',
        451 => 'Wrong Exchange server',
        499 => 'Client Closed Request',
        506 => 'Variant Also Negotiates',                      # Rack 1.5 compat
        598 => 'Network read timeout error',
        599 => 'Network connect timeout error'
      }).freeze

      # Return a status for the given code
      #
      # @param code [Fixnum] a valid HTTP code
      #
      # @return [Array] a pair of code and message for an HTTP status
      #
      # @since 0.1.0
      # @api private
      #
      # @example
      #   require 'hanami/http/status'
      #
      #   Hanami::Http::Status.for_code(418) # => [418, "I'm a teapot"]
      def self.for_code(code)
        ALL.assoc(code)
      end

      # Return a message for the given status code
      #
      # @param code [Fixnum] a valid HTTP code
      #
      # @return [String] a message for the given status code
      #
      # @since 0.3.2
      # @api private
      def self.message_for(code)
        for_code(code)[1]
      end
    end
  end
end

Version data entries

29 entries across 29 versions & 1 rubygems

Version Path
hanami-controller-1.0.0.beta3 lib/hanami/http/status.rb
hanami-controller-1.0.0.beta2 lib/hanami/http/status.rb
hanami-controller-1.0.0.beta1 lib/hanami/http/status.rb
hanami-controller-0.8.1 lib/hanami/http/status.rb
hanami-controller-0.8.0 lib/hanami/http/status.rb
hanami-controller-0.7.1 lib/hanami/http/status.rb
hanami-controller-0.7.0 lib/hanami/http/status.rb
hanami-controller-0.6.1 lib/hanami/http/status.rb
hanami-controller-0.6.0 lib/hanami/http/status.rb