BililiveRecorder/BililiveRecorder.Core/BililiveAPI.cs
Genteure 537d156878 ~
2018-03-21 22:41:34 +08:00

69 lines
3.0 KiB
C#

using System;
using System.Collections.Generic;
using System.Globalization;
using System.Net;
using System.Text;
using System.Text.RegularExpressions;
namespace BililiveRecorder.Core
{
internal static class BililiveAPI
{
/// <summary>
/// 下载json并解析
/// </summary>
/// <param name="url">下载路径</param>
/// <returns>数据</returns>
/// <exception cref="ArgumentNullException"/>
/// <exception cref="WebException"/>
public static JSONObject HttpGetJson(string url)
{
var c = new WebClient();
c.Headers.Add(HttpRequestHeader.UserAgent, "Mozilla/5.0 BililiveRecorder/0.0.0.0 (+https://github.com/Bililive/BililiveRecorder;bliverec@genteure.com)");
c.Headers.Add(HttpRequestHeader.Accept, "application/json, text/javascript, */*; q=0.01");
c.Headers.Add(HttpRequestHeader.Referer, "https://live.bilibili.com/");
var s = c.DownloadString(url);
var j = new JSONObject(s);
return j;
}
/// <summary>
/// 获取直播间播放地址
/// </summary>
/// <param name="roomid">原房间号</param>
/// <returns>FLV播放地址</returns>
/// <exception cref="WebException"/>
/// <exception cref="Exception"/>
public static string GetPlayUrl(int roomid)
{
string url = $@"https://api.live.bilibili.com/room/v1/Room/playUrl?cid={roomid}&quality=0&platform=web";
var data = HttpGetJson(url);
return data?["data"]?["durl"]?[0]?["url"]?.str?.Decode() ?? throw new Exception("没有直播播放地址");
}
/// <summary>
/// 获取直播间信息
/// </summary>
/// <param name="roomid">房间号(允许短号)</param>
/// <returns>直播间信息</returns>
/// <exception cref="WebException"/>
/// <exception cref="Exception"/>
public static RoomInfo GetRoomInfo(int roomid)
{
string url = $@"http://api.live.bilibili.com/AppRoom/index?room_id={roomid}&platform=android";
var data = HttpGetJson(url);
var i = new RoomInfo()
{
DisplayRoomid = (int)(data?["data"]?["show_room_id"]?.n ?? throw new Exception("未获取到直播间信息")),
RealRoomid = (int)(data?["data"]?["room_id"]?.n ?? throw new Exception("未获取到直播间信息")),
Username = data?["data"]?["uname"]?.str?.Decode() ?? throw new Exception("未获取到直播间信息"),
isStreaming = "LIVE" == (data?["data"]?["status"]?.str?.Decode() ?? throw new Exception("未获取到直播间信息")),
};
return i;
}
private static readonly Regex rx = new Regex(@"\\[uU]([0-9A-Fa-f]{4})", RegexOptions.Compiled);
internal static string Decode(this string str) => rx.Replace(str, match => ((char)Int32.Parse(match.Value.Substring(2), NumberStyles.HexNumber)).ToString());
}
}