File tree 1 file changed +16
-12
lines changed
1 file changed +16
-12
lines changed Original file line number Diff line number Diff line change 3
3
4
4
class RackTidyFFI
5
5
attr_accessor :headers
6
-
6
+
7
7
def initialize ( app )
8
- @app = app
9
- end
10
-
11
- def call ( env )
8
+ @app = app
9
+ end
10
+
11
+ def call ( env )
12
12
@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 }
16
13
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
18
22
response = "<!DOCTYPE HTML>\n #{ response } "
19
23
@headers [ "Content-Length" ] = response . length . to_s
20
24
@response = [ response ]
21
25
end
22
26
[ @status , @headers , @response ]
23
- end
24
-
25
- end
27
+ end
28
+
29
+ end
You can’t perform that action at this time.
0 commit comments