61 lines
1.2 KiB
Go
Raw Normal View History

2020-02-08 20:44:46 +08:00
package ytdl
import (
"fmt"
"io/ioutil"
"net/http"
"github.com/rs/zerolog/log"
)
func reverseStringSlice(s []string) {
for i, j := 0, len(s)-1; i < len(s)/2; i, j = i+1, j-1 {
s[i], s[j] = s[j], s[i]
}
}
func interfaceToString(val interface{}) string {
return fmt.Sprintf("%v", val)
}
func httpGet(url string) (*http.Response, error) {
req, err := http.NewRequest("GET", url, nil)
if err != nil {
return nil, err
}
// Youtube responses depend on language and user agent
req.Header.Set("Accept-Language", "en-US,en;q=0.5")
req.Header.Set("User-Agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0")
return http.DefaultClient.Do(req)
}
func httpGetAndCheckResponse(url string) (*http.Response, error) {
log.Debug().Msgf("Fetching %v", url)
resp, err := httpGet(url)
if err != nil {
return nil, fmt.Errorf("request failed: %w", err)
}
if resp.StatusCode != 200 {
resp.Body.Close()
return nil, fmt.Errorf("unexpected status code: %v", resp.StatusCode)
}
return resp, nil
}
func httpGetAndCheckResponseReadBody(url string) ([]byte, error) {
resp, err := httpGetAndCheckResponse(url)
if err != nil {
return nil, err
}
defer resp.Body.Close()
return ioutil.ReadAll(resp.Body)
}