mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2026-02-17 21:56:26 +08:00
137 lines
5.5 KiB
C#
137 lines
5.5 KiB
C#
using System;
|
|
using System.Net.Http;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using Flurl.Http;
|
|
|
|
namespace SKIT.FlurlHttpClient.Wechat.Ads
|
|
{
|
|
/// <summary>
|
|
/// 一个微信广告平台 API HTTP 客户端。
|
|
/// </summary>
|
|
public class WechatAdsClient : CommonClientBase, ICommonClient
|
|
{
|
|
/// <summary>
|
|
/// 获取当前客户端使用的微信广告平台凭证。
|
|
/// </summary>
|
|
public Settings.Credentials Credentials { get; }
|
|
|
|
/// <summary>
|
|
/// 用指定的配置项初始化 <see cref="WechatAdsClient"/> 类的新实例。
|
|
/// </summary>
|
|
/// <param name="options">配置项。</param>
|
|
public WechatAdsClient(WechatAdsClientOptions options)
|
|
: base()
|
|
{
|
|
if (options == null) throw new ArgumentNullException(nameof(options));
|
|
|
|
Credentials = new Settings.Credentials(options);
|
|
|
|
FlurlClient.BaseUrl = options.Endpoint ?? WechatAdsEndpoints.DEFAULT;
|
|
FlurlClient.WithTimeout(TimeSpan.FromMilliseconds(options.Timeout));
|
|
|
|
Interceptors.Add(new Interceptors.WechatAdsRequestAgencyTokenInterceptor(
|
|
agencyId: options.AgencyId,
|
|
agencyApiKey: options.AgencyApiKey
|
|
));
|
|
}
|
|
|
|
/// <summary>
|
|
/// 用指定的微信广告平台服务商 ID、微信广告平台服务商 AppId、微信广告平台服务商 ApiKey 初始化 <see cref="WechatAdsClient"/> 类的新实例。
|
|
/// </summary>
|
|
/// <param name="agencyId">微信广告平台服务商 ID。</param>
|
|
/// <param name="agencyAppId">微信广告平台服务商 AppId。</param>
|
|
/// <param name="agencyApiKey">微信广告平台服务商 ApiKey。</param>
|
|
public WechatAdsClient(string agencyId, string agencyAppId, string agencyApiKey)
|
|
: this(new WechatAdsClientOptions() { AgencyId = agencyId, AgencyAppId = agencyAppId, AgencyApiKey = agencyApiKey })
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// 使用当前客户端生成一个新的 <see cref="IFlurlRequest"/> 对象。
|
|
/// </summary>
|
|
/// <param name="request"></param>
|
|
/// <param name="method"></param>
|
|
/// <param name="urlSegments"></param>
|
|
/// <returns></returns>
|
|
public IFlurlRequest CreateRequest(WechatAdsRequest request, HttpMethod method, params object[] urlSegments)
|
|
{
|
|
IFlurlRequest flurlRequest = FlurlClient.Request(urlSegments).WithVerb(method);
|
|
|
|
if (request.Timeout != null)
|
|
{
|
|
flurlRequest.WithTimeout(TimeSpan.FromMilliseconds(request.Timeout.Value));
|
|
}
|
|
|
|
if (request.Version != null)
|
|
{
|
|
flurlRequest.SetQueryParam("version", request.Version);
|
|
}
|
|
|
|
return flurlRequest;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 异步发起请求。
|
|
/// </summary>
|
|
/// <typeparam name="T"></typeparam>
|
|
/// <param name="flurlRequest"></param>
|
|
/// <param name="httpContent"></param>
|
|
/// <param name="cancellationToken"></param>
|
|
/// <returns></returns>
|
|
public async Task<T> SendRequestAsync<T>(IFlurlRequest flurlRequest, HttpContent? httpContent = null, CancellationToken cancellationToken = default)
|
|
where T : WechatAdsResponse, new()
|
|
{
|
|
if (flurlRequest == null) throw new ArgumentNullException(nameof(flurlRequest));
|
|
|
|
try
|
|
{
|
|
using IFlurlResponse flurlResponse = await base.SendRequestAsync(flurlRequest, httpContent, cancellationToken);
|
|
return await WrapResponseWithJsonAsync<T>(flurlResponse, cancellationToken);
|
|
}
|
|
catch (FlurlHttpTimeoutException ex)
|
|
{
|
|
throw new Exceptions.WechatAdsRequestTimeoutException(ex.Message, ex);
|
|
}
|
|
catch (FlurlHttpException ex)
|
|
{
|
|
throw new WechatAdsException(ex.Message, ex);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// 异步发起请求。
|
|
/// </summary>
|
|
/// <typeparam name="T"></typeparam>
|
|
/// <param name="flurlRequest"></param>
|
|
/// <param name="data"></param>
|
|
/// <param name="cancellationToken"></param>
|
|
/// <returns></returns>
|
|
public async Task<T> SendRequestWithJsonAsync<T>(IFlurlRequest flurlRequest, object? data = null, CancellationToken cancellationToken = default)
|
|
where T : WechatAdsResponse, new()
|
|
{
|
|
if (flurlRequest == null) throw new ArgumentNullException(nameof(flurlRequest));
|
|
|
|
try
|
|
{
|
|
bool isSimpleRequest = data == null ||
|
|
flurlRequest.Verb == HttpMethod.Get ||
|
|
flurlRequest.Verb == HttpMethod.Head ||
|
|
flurlRequest.Verb == HttpMethod.Options;
|
|
using IFlurlResponse flurlResponse = isSimpleRequest ?
|
|
await base.SendRequestAsync(flurlRequest, null, cancellationToken) :
|
|
await base.SendRequestWithJsonAsync(flurlRequest, data, cancellationToken);
|
|
return await WrapResponseWithJsonAsync<T>(flurlResponse, cancellationToken);
|
|
}
|
|
catch (FlurlHttpTimeoutException ex)
|
|
{
|
|
throw new Exceptions.WechatAdsRequestTimeoutException(ex.Message, ex);
|
|
}
|
|
catch (FlurlHttpException ex)
|
|
{
|
|
throw new WechatAdsException(ex.Message, ex);
|
|
}
|
|
}
|
|
}
|
|
}
|