BililiveRecorder/BililiveRecorder.Core/Api/PolicyWrappedApiClient.cs
2021-02-23 18:03:37 +08:00

43 lines
2.1 KiB
C#

using System;
using System.Threading.Tasks;
using BililiveRecorder.Core.Api.Model;
using Polly;
using Polly.Registry;
namespace BililiveRecorder.Core.Api
{
public class PolicyWrappedApiClient<T> : IApiClient, IDanmakuServerApiClient, IDisposable where T : class, IApiClient, IDanmakuServerApiClient, IDisposable
{
private readonly T client;
private readonly IReadOnlyPolicyRegistry<string> policies;
public PolicyWrappedApiClient(T client, IReadOnlyPolicyRegistry<string> policies)
{
this.client = client ?? throw new ArgumentNullException(nameof(client));
this.policies = policies ?? throw new ArgumentNullException(nameof(policies));
}
public async Task<BilibiliApiResponse<DanmuInfo>> GetDanmakuServerAsync(int roomid) => await this.policies
.Get<IAsyncPolicy>(PolicyNames.PolicyDanmakuApiRequestAsync)
.ExecuteAsync(_ => this.client.GetDanmakuServerAsync(roomid), new Context(PolicyNames.CacheKeyDanmaku + ":" + roomid))
.ConfigureAwait(false);
public async Task<BilibiliApiResponse<RoomInfo>> GetRoomInfoAsync(int roomid) => await this.policies
.Get<IAsyncPolicy>(PolicyNames.PolicyRoomInfoApiRequestAsync)
.ExecuteAsync(_ => this.client.GetRoomInfoAsync(roomid), new Context(PolicyNames.CacheKeyRoomInfo + ":" + roomid))
.ConfigureAwait(false);
public async Task<BilibiliApiResponse<RoomPlayInfo>> GetStreamUrlAsync(int roomid) => await this.policies
.Get<IAsyncPolicy>(PolicyNames.PolicyStreamApiRequestAsync)
.ExecuteAsync(_ => this.client.GetStreamUrlAsync(roomid), new Context(PolicyNames.CacheKeyStream + ":" + roomid))
.ConfigureAwait(false);
public async Task<BilibiliApiResponse<UserInfo>> GetUserInfoAsync(int roomid) => await this.policies
.Get<IAsyncPolicy>(PolicyNames.PolicyRoomInfoApiRequestAsync)
.ExecuteAsync(_ => this.client.GetUserInfoAsync(roomid), new Context(PolicyNames.CacheKeyUserInfo + ":" + roomid))
.ConfigureAwait(false);
public void Dispose() => this.client.Dispose();
}
}