2020-10-24 15:47:41 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2020-10-25 12:41:17 +00:00
|
|
|
"io"
|
2020-10-24 15:47:41 +00:00
|
|
|
"log"
|
2020-10-25 12:41:17 +00:00
|
|
|
"net"
|
2020-10-24 15:47:41 +00:00
|
|
|
"net/http"
|
2020-10-25 12:41:17 +00:00
|
|
|
"net/url"
|
2020-10-25 14:01:23 +00:00
|
|
|
"os"
|
2020-10-25 12:41:17 +00:00
|
|
|
"strings"
|
2020-10-25 12:52:02 +00:00
|
|
|
"syscall"
|
2020-10-24 15:47:41 +00:00
|
|
|
|
|
|
|
"github.com/lucas-clemente/quic-go/http3"
|
|
|
|
)
|
|
|
|
|
2020-10-25 12:41:17 +00:00
|
|
|
// http/3 client
|
|
|
|
var h3client = &http.Client{
|
2020-10-24 15:47:41 +00:00
|
|
|
Transport: &http3.RoundTripper{},
|
|
|
|
}
|
|
|
|
|
2020-10-25 12:41:17 +00:00
|
|
|
// http/2 client
|
|
|
|
var h2client = &http.Client{}
|
|
|
|
|
|
|
|
// user agent to use
|
|
|
|
var ua = "Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101"
|
|
|
|
|
|
|
|
func genericHTTPProxy(w http.ResponseWriter, req *http.Request) {
|
|
|
|
|
|
|
|
q := req.URL.Query()
|
|
|
|
host := q.Get("host")
|
|
|
|
q.Del("host")
|
|
|
|
|
|
|
|
if len(host) <= 0 {
|
|
|
|
host = getHost(req.URL.Path)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(host) <= 0 {
|
|
|
|
log.Panic("No host in query parameters.")
|
|
|
|
}
|
2020-10-24 15:47:41 +00:00
|
|
|
|
2020-10-25 12:41:17 +00:00
|
|
|
proxyURL, err := url.Parse("https://" + host + strings.Replace(req.URL.Path, "/ggpht", "", 1))
|
2020-10-24 15:47:41 +00:00
|
|
|
|
|
|
|
if err != nil {
|
2020-10-25 12:41:17 +00:00
|
|
|
log.Panic(err)
|
2020-10-24 15:47:41 +00:00
|
|
|
}
|
|
|
|
|
2020-10-25 12:41:17 +00:00
|
|
|
proxyURL.RawQuery = q.Encode()
|
|
|
|
|
|
|
|
request, err := http.NewRequest("GET", proxyURL.String(), nil)
|
|
|
|
|
|
|
|
copyHeaders(req.Header, request.Header)
|
|
|
|
request.Header.Set("User-Agent", ua)
|
2020-10-24 15:47:41 +00:00
|
|
|
|
|
|
|
if err != nil {
|
2020-10-25 12:41:17 +00:00
|
|
|
log.Panic(err)
|
2020-10-24 15:47:41 +00:00
|
|
|
}
|
|
|
|
|
2020-10-25 12:41:17 +00:00
|
|
|
var client *http.Client
|
|
|
|
|
2020-10-25 15:57:05 +00:00
|
|
|
// https://github.com/lucas-clemente/quic-go/issues/2836
|
|
|
|
client = h2client
|
2020-10-25 12:41:17 +00:00
|
|
|
|
|
|
|
resp, err := client.Do(request)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
log.Panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
copyHeaders(resp.Header, w.Header())
|
|
|
|
|
|
|
|
w.WriteHeader(resp.StatusCode)
|
|
|
|
|
|
|
|
io.Copy(w, resp.Body)
|
|
|
|
}
|
|
|
|
|
|
|
|
func copyHeaders(from http.Header, to http.Header) {
|
|
|
|
// Loop over header names
|
|
|
|
for name, values := range from {
|
|
|
|
// Loop over all values for the name.
|
|
|
|
for _, value := range values {
|
|
|
|
to.Set(name, value)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func getHost(path string) (host string) {
|
|
|
|
|
|
|
|
host = ""
|
|
|
|
|
|
|
|
if strings.HasPrefix(path, "/vi/") {
|
|
|
|
host = "i.ytimg.com"
|
|
|
|
}
|
|
|
|
|
|
|
|
if strings.HasPrefix(path, "/ggpht/") {
|
|
|
|
host = "yt3.ggpht.com"
|
|
|
|
}
|
|
|
|
|
|
|
|
if strings.HasPrefix(path, "/a/") {
|
|
|
|
host = "yt3.ggpht.com"
|
|
|
|
}
|
|
|
|
|
|
|
|
return host
|
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
http.HandleFunc("/videoplayback", genericHTTPProxy)
|
|
|
|
http.HandleFunc("/vi/", genericHTTPProxy)
|
|
|
|
http.HandleFunc("/a/", genericHTTPProxy)
|
|
|
|
http.HandleFunc("/ggpht/", genericHTTPProxy)
|
2020-10-25 14:01:23 +00:00
|
|
|
socket := "socket" + string(os.PathSeparator) + "http-proxy.sock"
|
|
|
|
syscall.Unlink(socket)
|
|
|
|
listener, err := net.Listen("unix", socket)
|
2020-10-25 12:41:17 +00:00
|
|
|
if err != nil {
|
|
|
|
fmt.Println("Failed to bind to UDS, falling back to TCP/IP")
|
|
|
|
fmt.Println(err.Error())
|
|
|
|
http.ListenAndServe(":8080", nil)
|
|
|
|
} else {
|
|
|
|
http.Serve(listener, nil)
|
|
|
|
}
|
2020-10-24 15:47:41 +00:00
|
|
|
}
|