mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2022-08-14.git
synced 2024-08-15 00:53:20 +00:00
Remove workaround for decompression of proxied files (#2286)
Was used by `proxy_file` before crystal 0.35.0. Implemented in:f7dbf2bdd4
orphaned since:d30a972a90
This commit is contained in:
parent
578bbcd181
commit
84594b0e1e
1 changed files with 0 additions and 28 deletions
|
@ -710,34 +710,6 @@ class HTTP::Server::Response
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
class HTTP::Client::Response
|
|
||||||
def pipe(io)
|
|
||||||
HTTP.serialize_body(io, headers, @body, @body_io, @version)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
# Supports serialize_body without first writing headers
|
|
||||||
module HTTP
|
|
||||||
def self.serialize_body(io, headers, body, body_io, version)
|
|
||||||
if body
|
|
||||||
io << body
|
|
||||||
elsif body_io
|
|
||||||
content_length = content_length(headers)
|
|
||||||
if content_length
|
|
||||||
copied = IO.copy(body_io, io)
|
|
||||||
if copied != content_length
|
|
||||||
raise ArgumentError.new("Content-Length header is #{content_length} but body had #{copied} bytes")
|
|
||||||
end
|
|
||||||
elsif Client::Response.supports_chunked?(version)
|
|
||||||
headers["Transfer-Encoding"] = "chunked"
|
|
||||||
serialize_chunked_body(io, body_io)
|
|
||||||
else
|
|
||||||
io << body
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
class HTTP::Client
|
class HTTP::Client
|
||||||
property family : Socket::Family = Socket::Family::UNSPEC
|
property family : Socket::Family = Socket::Family::UNSPEC
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue