Sha256: a7c8f2179a96ef3afb8e48efc8f32de0031b68b92e79322cbeb38d9e9fb1f48b

Contents?: true

Size: 1.3 KB

Versions: 16

Compression:

Stored size: 1.3 KB

Contents

# frozen-string-literal: true

#
class Roda
  module RodaPlugins
    # The drop_body plugin automatically drops the body and
    # Content-Type/Content-Length headers from the response if
    # the response status indicates that the response should
    # not include a body (response statuses 100, 101, 102, 204,
    # and 304).  For response status 205, the body and Content-Type
    # headers are dropped, but the Content-length header is set to
    # '0' instead of being dropped.
    module DropBody
      module ResponseMethods
        DROP_BODY_STATUSES = [100, 101, 102, 204, 205, 304].freeze
        RodaPlugins.deprecate_constant(self, :DROP_BODY_STATUSES)

        DROP_BODY_RANGE = 100..199
        private_constant :DROP_BODY_RANGE

        # If the response status indicates a body should not be
        # returned, use an empty body and remove the Content-Length
        # and Content-Type headers.
        def finish
          r = super
          case r[0]
          when DROP_BODY_RANGE, 204, 304
            r[2] = EMPTY_ARRAY
            h = r[1]
            h.delete("Content-Length")
            h.delete("Content-Type")
          when 205
            r[2] = EMPTY_ARRAY
            empty_205_headers(r[1])
          end
          r
        end
      end
    end

    register_plugin(:drop_body, DropBody)
  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
roda-3.69.0 lib/roda/plugins/drop_body.rb
roda-3.68.0 lib/roda/plugins/drop_body.rb
roda-3.67.0 lib/roda/plugins/drop_body.rb
roda-3.66.0 lib/roda/plugins/drop_body.rb
roda-3.65.0 lib/roda/plugins/drop_body.rb
roda-3.64.0 lib/roda/plugins/drop_body.rb
roda-3.63.0 lib/roda/plugins/drop_body.rb
roda-3.62.0 lib/roda/plugins/drop_body.rb
roda-3.61.0 lib/roda/plugins/drop_body.rb
roda-3.60.0 lib/roda/plugins/drop_body.rb
roda-3.59.0 lib/roda/plugins/drop_body.rb
roda-3.58.0 lib/roda/plugins/drop_body.rb
roda-3.57.0 lib/roda/plugins/drop_body.rb
roda-3.56.0 lib/roda/plugins/drop_body.rb
roda-3.55.0 lib/roda/plugins/drop_body.rb
roda-3.54.0 lib/roda/plugins/drop_body.rb