Skip to content

Commit 9c1190e

Browse files
committed
added rails support
1 parent b434a61 commit 9c1190e

File tree

1 file changed

+16
-12
lines changed

1 file changed

+16
-12
lines changed

lib/rack-tidy-ffi.rb

+16-12
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,27 @@
33

44
class RackTidyFFI
55
attr_accessor :headers
6-
6+
77
def initialize(app)
8-
@app = app
9-
end
10-
11-
def call(env)
8+
@app = app
9+
end
10+
11+
def call(env)
1212
@status, @headers, @response = @app.call(env)
13-
# TODO: include all response attributes... needed?
14-
# response_body = ""
15-
# response_body = @response.each { |part| response_body += part }
1613
if @headers["Content-Type"].include? "text/html"
17-
response = TidyMachine.new(@response.first).tidy
14+
body = if @response.is_a? Array
15+
@response.first
16+
elsif @response.is_a? Rack::BodyProxy
17+
@response.body.first
18+
else
19+
@response.body
20+
end
21+
response = TidyMachine.new(body).tidy
1822
response = "<!DOCTYPE HTML>\n#{response}"
1923
@headers["Content-Length"] = response.length.to_s
2024
@response = [response]
2125
end
2226
[@status, @headers, @response]
23-
end
24-
25-
end
27+
end
28+
29+
end

0 commit comments

Comments
 (0)