Proxy: fix the throttling issue once for all

This commit is contained in:
Samantaz Fox 2023-03-08 19:38:15 +01:00
parent a743d01a10
commit 865b7e584d
No known key found for this signature in database
GPG Key ID: F42821059186176E
1 changed files with 5 additions and 6 deletions

View File

@ -53,11 +53,7 @@ module Invidious::Routes::VideoPlayback
headers = HTTP::Headers.new
MediaProxy.copy_request_headers(from: env.request.headers, to: headers)
if has_range_param
url += "&range=#{range}"
else
headers["Range"] = "bytes=#{range || "0-"}"
end
headers["Range"] = "bytes=" + (range || "0-")
client = make_client(URI.parse(host), region)
response = HTTP::Client::Response.new(500)
@ -107,13 +103,16 @@ module Invidious::Routes::VideoPlayback
return error_template(403, "Administrator has disabled this endpoint.")
end
# Add back the range header. Important!
headers["Range"] = "bytes=" + (range || "0-")
MediaProxy.proxy_dash_chunk(env, client, url, region)
elsif has_range_param
if CONFIG.disabled?("dash")
return error_template(403, "Administrator has disabled this endpoint.")
end
MediaProxy.proxy_dash_chunk(env, client, url, region)
MediaProxy.proxy_dash_chunk(env, client, url + "&range=#{range}", region)
else
if (title && CONFIG.disabled?("downloads")) || (title.nil? && CONFIG.disabled?("local"))
return error_template(403, "Administrator has disabled this endpoint.")