Sha256: 1f6fac6dc819de8bd7b7e593a833fe499b18be3b1189a405e7a71867a77c6811

Contents?: true

Size: 1.4 KB

Versions: 4

Compression:

Stored size: 1.4 KB

Contents

module HtmlCompressor

  class Rack

    DEFAULT_OPTIONS = {
      :enabled => true,
      :remove_multi_spaces => true,
      :remove_comments => true,
      :remove_intertag_spaces => false,
      :remove_quotes => true,
      :compress_css => false,
      :compress_javascript => false,
      :simple_doctype => false,
      :remove_script_attributes => true,
      :remove_style_attributes => true,
      :remove_link_attributes => true,
      :remove_form_attributes => false,
      :remove_input_attributes => true,
      :remove_javascript_protocol => true,
      :remove_http_protocol => false,
      :remove_https_protocol => false,
      :preserve_line_breaks => false,
      :simple_boolean_attributes => true
    }

    def initialize app, options = {}
      @app = app

      options = DEFAULT_OPTIONS.merge(options)

      @compressor = HtmlCompressor::Compressor.new(options)

    end

    def call env
      status, headers, body = @app.call(env)

      if headers.key? 'Content-Type' and headers['Content-Type'] =~ /html/
        content = ''

        body.each do |part|
          content << part
        end

        content = @compressor.compress(content)
        headers['Content-Length'] = content.bytesize.to_s if headers['Content-Length']

        [status, headers, [content]]
      else
        [status, headers, body]
      end
    ensure
      body.close if body.respond_to?(:close)
    end

  end

end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
htmlcompressor-0.4.0 lib/htmlcompressor/rack.rb
htmlcompressor-0.3.1 lib/htmlcompressor/rack.rb
htmlcompressor-0.3.0 lib/htmlcompressor/rack.rb
htmlcompressor-0.2.0 lib/htmlcompressor/rack.rb