fixup! Use mvi and mn query params to build host url
All checks were successful
CI / build (push) Successful in 2m6s

This commit is contained in:
Fijxu 2024-10-08 22:43:33 -03:00
parent 64ad2fc28f
commit 6f5f04c618
Signed by: Fijxu
GPG key ID: 32C1DDF333EDA6A4

17
main.go
View file

@ -99,12 +99,20 @@ func (*requesthandler) ServeHTTP(w http.ResponseWriter, req *http.Request) {
}
q := req.URL.Query()
host := q.Get("host")
if len(host) <= 0 {
host = q.Get("hls_chunk_host")
}
if len(host) <= 0 {
host = getHost(req.URL.EscapedPath())
}
// https://rr(mvi)---(mn).googlevideo.com
if len(host) <= 0 {
mvi := q.Get("mvi")
mn := strings.Split(q.Get("mn"), ",")
if len(mvi) <= 0 {
io.WriteString(w, "No `mvi` in query parameters")
return
@ -114,8 +122,11 @@ func (*requesthandler) ServeHTTP(w http.ResponseWriter, req *http.Request) {
io.WriteString(w, "No `mn` in query parameters")
return
}
host = "rr" + mvi + "---" + mn[0] + ".googlevideo.com"
} else {
io.WriteString(w, "Not possible to build host url from `mvi` and `mn`.")
}
host := "rr" + mvi + "---" + mn[0] + ".googlevideo.com"
q.Del("host")
parts := strings.Split(strings.ToLower(host), ".")