mirror of
https://github.com/AynaLivePlayer/blivedm-go.git
synced 2025-12-06 11:22:50 +08:00
186 lines
6.2 KiB
Go
186 lines
6.2 KiB
Go
package api
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"net/http"
|
|
"strconv"
|
|
|
|
"github.com/tidwall/gjson"
|
|
)
|
|
|
|
// RoomInfo
|
|
// api https://api.live.bilibili.com/room/v1/Room/room_init?id={} response
|
|
type RoomInitInfo struct {
|
|
Code int `json:"code"`
|
|
Msg string `json:"msg"`
|
|
Message string `json:"message"`
|
|
Data struct {
|
|
RoomId int `json:"room_id"`
|
|
ShortId int `json:"short_id"`
|
|
Uid int `json:"uid"`
|
|
NeedP2P int `json:"need_p2p"`
|
|
IsHidden bool `json:"is_hidden"`
|
|
IsLocked bool `json:"is_locked"`
|
|
IsPortrait bool `json:"is_portrait"`
|
|
LiveStatus int `json:"live_status"`
|
|
HiddenTill int `json:"hidden_till"`
|
|
LockTill int `json:"lock_till"`
|
|
Encrypted bool `json:"encrypted"`
|
|
PwdVerified bool `json:"pwd_verified"`
|
|
LiveTime int64 `json:"live_time"`
|
|
RoomShield int `json:"room_shield"`
|
|
IsSp int `json:"is_sp"`
|
|
SpecialType int `json:"special_type"`
|
|
} `json:"data"`
|
|
}
|
|
|
|
// RoomInitInfo
|
|
// https://api.live.bilibili.com/room/v1/Room/get_info?id={} response
|
|
type RoomInfo struct {
|
|
Code int `json:"code"`
|
|
Msg string `json:"msg"`
|
|
Message string `json:"message"`
|
|
Data struct {
|
|
Uid int `json:"uid"`
|
|
RoomId int `json:"room_id"`
|
|
ShortId int `json:"short_id"`
|
|
Attention int `json:"attention"`
|
|
Online int `json:"online"`
|
|
IsPortrait bool `json:"is_portrait"`
|
|
Description string `json:"description"`
|
|
LiveStatus int `json:"live_status"`
|
|
AreaId int `json:"area_id"`
|
|
ParentAreaId int `json:"parent_area_id"`
|
|
ParentAreaName string `json:"parent_area_name"`
|
|
OldAreaId int `json:"old_area_id"`
|
|
Background string `json:"background"`
|
|
Title string `json:"title"`
|
|
UserCover string `json:"user_cover"`
|
|
Keyframe string `json:"keyframe"`
|
|
IsStrictRoom bool `json:"is_strict_room"`
|
|
LiveTime string `json:"live_time"`
|
|
Tags string `json:"tags"`
|
|
IsAnchor int `json:"is_anchor"`
|
|
RoomSilentType string `json:"room_silent_type"`
|
|
RoomSilentLevel int `json:"room_silent_level"`
|
|
RoomSilentSecond int `json:"room_silent_second"`
|
|
AreaName string `json:"area_name"`
|
|
Pendants string `json:"pendants"`
|
|
AreaPendants string `json:"area_pendants"`
|
|
HotWords []string `json:"hot_words"`
|
|
HotWordsStatus int `json:"hot_words_status"`
|
|
Verify string `json:"verify"`
|
|
NewPendants struct {
|
|
Frame struct {
|
|
Name string `json:"name"`
|
|
Value string `json:"value"`
|
|
Position int `json:"position"`
|
|
Desc string `json:"desc"`
|
|
Area int `json:"area"`
|
|
AreaOld int `json:"area_old"`
|
|
BgColor string `json:"bg_color"`
|
|
BgPic string `json:"bg_pic"`
|
|
UseOldArea bool `json:"use_old_area"`
|
|
} `json:"frame"`
|
|
Badge interface{} `json:"badge"`
|
|
MobileFrame struct {
|
|
Name string `json:"name"`
|
|
Value string `json:"value"`
|
|
Position int `json:"position"`
|
|
Desc string `json:"desc"`
|
|
Area int `json:"area"`
|
|
AreaOld int `json:"area_old"`
|
|
BgColor string `json:"bg_color"`
|
|
BgPic string `json:"bg_pic"`
|
|
UseOldArea bool `json:"use_old_area"`
|
|
} `json:"mobile_frame"`
|
|
MobileBadge interface{} `json:"mobile_badge"`
|
|
} `json:"new_pendants"`
|
|
UpSession string `json:"up_session"`
|
|
PkStatus int `json:"pk_status"`
|
|
PkId int `json:"pk_id"`
|
|
BattleId int `json:"battle_id"`
|
|
AllowChangeAreaTime int `json:"allow_change_area_time"`
|
|
AllowUploadCoverTime int `json:"allow_upload_cover_time"`
|
|
StudioInfo struct {
|
|
Status int `json:"status"`
|
|
MasterList []interface{} `json:"master_list"`
|
|
} `json:"studio_info"`
|
|
} `json:"data"`
|
|
}
|
|
|
|
// DanmuInfo
|
|
// api https://api.live.bilibili.com/xlive/web-room/v1/index/getDanmuInfo?id={}&type=0 response
|
|
type DanmuInfo struct {
|
|
Code int `json:"code"`
|
|
Message string `json:"message"`
|
|
Ttl int `json:"ttl"`
|
|
Data struct {
|
|
Group string `json:"group"`
|
|
BusinessId int `json:"business_id"`
|
|
RefreshRowFactor float64 `json:"refresh_row_factor"`
|
|
RefreshRate int `json:"refresh_rate"`
|
|
MaxDelay int `json:"max_delay"`
|
|
Token string `json:"token"`
|
|
HostList []struct {
|
|
Host string `json:"host"`
|
|
Port int `json:"port"`
|
|
WssPort int `json:"wss_port"`
|
|
WsPort int `json:"ws_port"`
|
|
} `json:"host_list"`
|
|
} `json:"data"`
|
|
}
|
|
|
|
func GetUid(cookie string) (int, error) {
|
|
headers := &http.Header{}
|
|
headers.Set("cookie", cookie)
|
|
headers.Set("User-Agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:137.0) Gecko/20100101 Firefox/137.0")
|
|
resp, err := HttpGet("https://api.bilibili.com/x/web-interface/nav", headers)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
j := gjson.ParseBytes(resp)
|
|
if j.Get("code").Int() != 0 || !j.Get("data.isLogin").Bool() {
|
|
return 0, errors.New(j.Get("message").String())
|
|
}
|
|
return int(j.Get("data.mid").Int()), nil
|
|
}
|
|
|
|
func GetDanmuInfo(roomID int, cookie string) (*DanmuInfo, error) {
|
|
result := &DanmuInfo{}
|
|
headers := &http.Header{}
|
|
headers.Set("cookie", cookie)
|
|
headers.Set("User-Agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:137.0) Gecko/20100101 Firefox/137.0")
|
|
|
|
signedUrl, err := WbiKeysSignString(fmt.Sprintf("https://api.live.bilibili.com/xlive/web-room/v1/index/getDanmuInfo?id=%d&type=0", roomID))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
err = GetJsonWithHeader(signedUrl, headers, result)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return result, nil
|
|
}
|
|
|
|
func GetRoomInfo(roomID int) (*RoomInfo, error) {
|
|
result := &RoomInfo{}
|
|
headers := &http.Header{}
|
|
headers.Set("User-Agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:137.0) Gecko/20100101 Firefox/137.0")
|
|
err := GetJsonWithHeader(fmt.Sprintf("https://api.live.bilibili.com/room/v1/Room/get_info?id=%d", roomID), headers, result)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return result, nil
|
|
}
|
|
|
|
func GetRoomRealID(roomID int) (string, error) {
|
|
res, err := GetRoomInfo(roomID)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
return strconv.Itoa(res.Data.RoomId), nil
|
|
}
|