Add support for using local links in manifest

このコミットが含まれているのは:
Omar Roth 2018-04-15 22:57:17 -05:00
コミット 830d6fae8e
1個のファイルの変更11行の追加4行の削除

ファイルの表示

@ -540,6 +540,7 @@ get "/api/manifest/dash/id/:id" do |env|
env.response.headers.add("Access-Control-Allow-Origin", "*")
env.response.content_type = "application/dash+xml"
local = env.params.query["local"]?.try &.== "true"
id = env.params.url["id"]
yt_client = get_client(youtube_pool)
@ -560,12 +561,18 @@ get "/api/manifest/dash/id/:id" do |env|
halt env, status_code: 403
end
signature = false
if adaptive_fmts[0]? && adaptive_fmts[0]["s"]?
signature = true
if local
adaptive_fmts.each do |fmt|
if Kemal.config.ssl
scheme = "https://"
end
scheme ||= "http://"
fmt["url"] = scheme + env.request.headers["Host"] + URI.parse(fmt["url"]).full_path
end
end
if signature
if adaptive_fmts[0]? && adaptive_fmts[0]["s"]?
adaptive_fmts.each do |fmt|
fmt["url"] += "&signature=" + decrypt_signature(fmt["s"])
end