forked from midou/invidious
Add support for using local links in manifest
This commit is contained in:
parent
bc068721ab
commit
830d6fae8e
@ -540,6 +540,7 @@ get "/api/manifest/dash/id/:id" do |env|
|
|||||||
env.response.headers.add("Access-Control-Allow-Origin", "*")
|
env.response.headers.add("Access-Control-Allow-Origin", "*")
|
||||||
env.response.content_type = "application/dash+xml"
|
env.response.content_type = "application/dash+xml"
|
||||||
|
|
||||||
|
local = env.params.query["local"]?.try &.== "true"
|
||||||
id = env.params.url["id"]
|
id = env.params.url["id"]
|
||||||
|
|
||||||
yt_client = get_client(youtube_pool)
|
yt_client = get_client(youtube_pool)
|
||||||
@ -560,12 +561,18 @@ get "/api/manifest/dash/id/:id" do |env|
|
|||||||
halt env, status_code: 403
|
halt env, status_code: 403
|
||||||
end
|
end
|
||||||
|
|
||||||
signature = false
|
if local
|
||||||
if adaptive_fmts[0]? && adaptive_fmts[0]["s"]?
|
adaptive_fmts.each do |fmt|
|
||||||
signature = true
|
if Kemal.config.ssl
|
||||||
|
scheme = "https://"
|
||||||
|
end
|
||||||
|
scheme ||= "http://"
|
||||||
|
|
||||||
|
fmt["url"] = scheme + env.request.headers["Host"] + URI.parse(fmt["url"]).full_path
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
if signature
|
if adaptive_fmts[0]? && adaptive_fmts[0]["s"]?
|
||||||
adaptive_fmts.each do |fmt|
|
adaptive_fmts.each do |fmt|
|
||||||
fmt["url"] += "&signature=" + decrypt_signature(fmt["s"])
|
fmt["url"] += "&signature=" + decrypt_signature(fmt["s"])
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user