This commit is contained in:
parent
c90e03271e
commit
4c2f1d6691
2
LICENSE
2
LICENSE
@ -1,4 +1,4 @@
|
|||||||
Copyright (c) 2016 - 2024, Přemysl Eric Janouch <p@janouch.name>
|
Copyright (c) 2016 - 2025, Přemysl Eric Janouch <p@janouch.name>
|
||||||
|
|
||||||
Permission to use, copy, modify, and/or distribute this software for any
|
Permission to use, copy, modify, and/or distribute this software for any
|
||||||
purpose with or without fee is hereby granted.
|
purpose with or without fee is hereby granted.
|
||||||
|
81
main.go
81
main.go
@ -6,10 +6,10 @@ import (
|
|||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
"io/ioutil"
|
|
||||||
"log"
|
"log"
|
||||||
"net"
|
"net"
|
||||||
"net/http"
|
"net/http"
|
||||||
|
"net/url"
|
||||||
"os"
|
"os"
|
||||||
"path"
|
"path"
|
||||||
"regexp"
|
"regexp"
|
||||||
@ -21,22 +21,34 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
targetURI = "http://as-hls-%s-live.akamaized.net/pool_904/live/%s/" +
|
targetURI = "http://as-hls-%s-live.akamaized.net/pool_%s/live/%s/" +
|
||||||
"%s/%s.isml/%s-audio%%3d%s.norewind.m3u8"
|
"%s/%s.isml/%s-audio%%3d%s.norewind.m3u8"
|
||||||
networksURI1 = "https://rms.api.bbc.co.uk/radio/networks.json"
|
networksURI1 = "https://rms.api.bbc.co.uk/radio/networks.json"
|
||||||
networksURI2 = "https://rms.api.bbc.co.uk/v2/networks/%s"
|
networksURI2 = "https://rms.api.bbc.co.uk/v2/networks/%s"
|
||||||
metaURI = "https://rms.api.bbc.co.uk/v2/services/%s/segments/latest"
|
metaURI = "https://rms.api.bbc.co.uk/v2/services/%s/segments/latest"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
var client = &http.Client{Transport: &http.Transport{}}
|
||||||
|
|
||||||
|
func get(url string) (resp *http.Response, err error) {
|
||||||
|
req, err := http.NewRequest("GET", url, nil)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
// lstn.lv returned 403 for the default net.http User-Agent.
|
||||||
|
req.Header.Set("User-Agent", "bbc-on-ice/1")
|
||||||
|
return client.Do(req)
|
||||||
|
}
|
||||||
|
|
||||||
func getServiceTitle1(name string) (string, error) {
|
func getServiceTitle1(name string) (string, error) {
|
||||||
resp, err := http.Get(networksURI1)
|
resp, err := get(networksURI1)
|
||||||
if resp != nil {
|
if resp != nil {
|
||||||
defer resp.Body.Close()
|
defer resp.Body.Close()
|
||||||
}
|
}
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return name, err
|
return name, err
|
||||||
}
|
}
|
||||||
b, err := ioutil.ReadAll(resp.Body)
|
b, err := io.ReadAll(resp.Body)
|
||||||
|
|
||||||
var v struct {
|
var v struct {
|
||||||
Results []struct {
|
Results []struct {
|
||||||
@ -71,14 +83,14 @@ func getServiceTitle(name string) (string, error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Network IDs tend to coincide with service IDs.
|
// Network IDs tend to coincide with service IDs.
|
||||||
resp, err := http.Get(fmt.Sprintf(networksURI2, name))
|
resp, err := get(fmt.Sprintf(networksURI2, name))
|
||||||
if resp != nil {
|
if resp != nil {
|
||||||
defer resp.Body.Close()
|
defer resp.Body.Close()
|
||||||
}
|
}
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return name, err
|
return name, err
|
||||||
}
|
}
|
||||||
b, err := ioutil.ReadAll(resp.Body)
|
b, err := io.ReadAll(resp.Body)
|
||||||
|
|
||||||
var v struct {
|
var v struct {
|
||||||
LongTitle string `json:"long_title"`
|
LongTitle string `json:"long_title"`
|
||||||
@ -102,14 +114,14 @@ var errNoSong = errors.New("no song is playing")
|
|||||||
|
|
||||||
// getMeta retrieves and decodes metadata info from an independent webservice.
|
// getMeta retrieves and decodes metadata info from an independent webservice.
|
||||||
func getMeta(name string) (*meta, error) {
|
func getMeta(name string) (*meta, error) {
|
||||||
resp, err := http.Get(fmt.Sprintf(metaURI, name))
|
resp, err := get(fmt.Sprintf(metaURI, name))
|
||||||
if resp != nil {
|
if resp != nil {
|
||||||
defer resp.Body.Close()
|
defer resp.Body.Close()
|
||||||
}
|
}
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
b, err := ioutil.ReadAll(resp.Body)
|
b, err := io.ReadAll(resp.Body)
|
||||||
if os.Getenv("DEBUG") != "" {
|
if os.Getenv("DEBUG") != "" {
|
||||||
log.Println(string(b))
|
log.Println(string(b))
|
||||||
}
|
}
|
||||||
@ -152,14 +164,16 @@ func getMeta(name string) (*meta, error) {
|
|||||||
// resolveM3U8 resolves an M3U8 playlist to the first link that seems to
|
// resolveM3U8 resolves an M3U8 playlist to the first link that seems to
|
||||||
// be playable, possibly recursing.
|
// be playable, possibly recursing.
|
||||||
func resolveM3U8(target string) (out []string, err error) {
|
func resolveM3U8(target string) (out []string, err error) {
|
||||||
resp, err := http.Get(target)
|
resp, err := get(target)
|
||||||
if resp != nil {
|
|
||||||
defer resp.Body.Close()
|
|
||||||
}
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
b, err := ioutil.ReadAll(resp.Body)
|
defer resp.Body.Close()
|
||||||
|
|
||||||
|
b, err := io.ReadAll(resp.Body)
|
||||||
|
if resp.StatusCode != http.StatusOK {
|
||||||
|
return nil, fmt.Errorf("%s: %s", target, resp.Status)
|
||||||
|
}
|
||||||
if !utf8.Valid(b) {
|
if !utf8.Valid(b) {
|
||||||
return nil, errors.New("invalid UTF-8")
|
return nil, errors.New("invalid UTF-8")
|
||||||
}
|
}
|
||||||
@ -183,6 +197,36 @@ func resolveM3U8(target string) (out []string, err error) {
|
|||||||
return out, nil
|
return out, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const resolveURI = "https://lstn.lv/bbcradio.m3u8?station=%s"
|
||||||
|
|
||||||
|
var poolRE = regexp.MustCompile(`/pool_([^/]+)/`)
|
||||||
|
|
||||||
|
// resolvePool figures out the randomized part of stream URIs.
|
||||||
|
func resolvePool(name string) (pool string, err error) {
|
||||||
|
target := fmt.Sprintf(resolveURI, url.QueryEscape(name))
|
||||||
|
resp, err := get(target)
|
||||||
|
if err != nil {
|
||||||
|
return "", err
|
||||||
|
}
|
||||||
|
defer resp.Body.Close()
|
||||||
|
|
||||||
|
b, err := io.ReadAll(resp.Body)
|
||||||
|
if resp.StatusCode != http.StatusOK {
|
||||||
|
return "", fmt.Errorf("%s: %s", target, resp.Status)
|
||||||
|
}
|
||||||
|
for _, line := range strings.Split(string(b), "\n") {
|
||||||
|
if strings.HasPrefix(line, "#") {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
if m := poolRE.FindStringSubmatch(line); m == nil {
|
||||||
|
return "", fmt.Errorf("%s: unexpected URI", target)
|
||||||
|
} else {
|
||||||
|
return m[1], nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return "", fmt.Errorf("%s: no URI", target)
|
||||||
|
}
|
||||||
|
|
||||||
// metaProc periodically polls the sub-URL given by name for titles and sends
|
// metaProc periodically polls the sub-URL given by name for titles and sends
|
||||||
// them out the given channel. Never returns prematurely.
|
// them out the given channel. Never returns prematurely.
|
||||||
func metaProc(ctx context.Context, name string, out chan<- string) {
|
func metaProc(ctx context.Context, name string, out chan<- string) {
|
||||||
@ -264,7 +308,7 @@ func dataProc(ctx context.Context, playlistURL string, maxChunk int,
|
|||||||
go urlProc(ctx, playlistURL, urls)
|
go urlProc(ctx, playlistURL, urls)
|
||||||
|
|
||||||
for url := range urls {
|
for url := range urls {
|
||||||
resp, err := http.Get(url)
|
resp, err := get(url)
|
||||||
if resp != nil {
|
if resp != nil {
|
||||||
defer resp.Body.Close()
|
defer resp.Body.Close()
|
||||||
}
|
}
|
||||||
@ -307,10 +351,15 @@ func proxy(w http.ResponseWriter, req *http.Request) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// [ww]/[uk], [48000/96000]/[128000/320000], bbc_radio_one/bbc_1xtra/...
|
// [ww]/[uk], [48000/96000]/[128000/320000], bbc_radio_one/bbc_1xtra/...
|
||||||
region, quality, name := m[1], m[2], m[3]
|
region, quality, name, pool := m[1], m[2], m[3], "904"
|
||||||
|
if p, err := resolvePool(name); err != nil {
|
||||||
|
log.Printf("failed to resolve pool: %s\n", err)
|
||||||
|
} else {
|
||||||
|
pool = p
|
||||||
|
}
|
||||||
|
|
||||||
mediaPlaylistURL :=
|
mediaPlaylistURL :=
|
||||||
fmt.Sprintf(targetURI, region, region, name, name, name, quality)
|
fmt.Sprintf(targetURI, region, pool, region, name, name, name, quality)
|
||||||
|
|
||||||
// This validates the parameters as a side-effect.
|
// This validates the parameters as a side-effect.
|
||||||
media, err := resolveM3U8(mediaPlaylistURL)
|
media, err := resolveM3U8(mediaPlaylistURL)
|
||||||
|
Loading…
Reference in New Issue
Block a user