summaryrefslogtreecommitdiff
path: root/bilibili/streaming.go
blob: c89126d93eb7d6d9689d5f48fe048044179eb323 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package bilibili

import (
	"context"
	"errors"
	"fmt"
	"github.com/keuin/slbr/common"
	"net/http"
	"os"
	"strings"
)

// CopyLiveStream read data from a livestream video stream, copy them to a writer.
func (b Bilibili) CopyLiveStream(
	ctx context.Context,
	roomId common.RoomId,
	stream StreamingUrlInfo,
	out *os.File,
	buffer []byte,
	readChunkSize int,
) (err error) {
	url := stream.URL
	if !strings.HasPrefix(url, "https://") &&
		!strings.HasPrefix(url, "http://") {
		return fmt.Errorf("invalid URL: %v", url)
	}

	r, err := b.newGet(url)
	if err != nil {
		b.logger.Error("Cannot create HTTP GET instance on %v: %v", url, err)
		return err
	}

	r.Header.Set("Referer",
		fmt.Sprintf("https://live.bilibili.com/blanc/%d?liteVersion=true", roomId))

	resp, err := b.Do(r)
	if err != nil {
		b.logger.Error("Cannot make HTTP GET request on %v: %v\n", url, err)
		return
	}

	// 404 when not streaming
	if resp.StatusCode == http.StatusNotFound {
		return ErrRoomIsClosed
	}

	err = validateHttpStatus(resp)
	if err != nil {
		return
	}

	defer func() { _ = resp.Body.Close() }()

	b.logger.Info("Copying live stream...")
	// blocking copy
	n, err := common.CopyToFileWithBuffer(ctx, out, resp.Body, buffer, readChunkSize, false)

	if err != nil && !errors.Is(err, context.Canceled) {
		b.logger.Error("Stream copying was interrupted unexpectedly: %v", err)
	}

	if err == nil {
		b.logger.Info("The live is ended. (room %v)", roomId)
	}

	b.logger.Info("Total downloaded: %v", common.PrettyBytes(uint64(n)))
	return err
}