47 lines
1.8 KiB
C#
47 lines
1.8 KiB
C#
using System.Net.Http.Headers;
|
|
using System.Text;
|
|
using CShocker.Shockers.Abstract;
|
|
using CShocker.Shockers.ShockerSettings;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
namespace CShocker.Shockers;
|
|
|
|
internal class OpenShockHttp : HttpShocker
|
|
{
|
|
protected override void ControlInternal(ControlAction action, string shockerId, int intensity, int duration)
|
|
{
|
|
HttpRequestMessage request = new (HttpMethod.Post, $"{((HttpShockerSettings)ShockerSettings).Endpoint}/1/shockers/control")
|
|
{
|
|
Headers =
|
|
{
|
|
UserAgent = { new ProductInfoHeaderValue("OpenCS2hock", "1") },
|
|
Accept = { new MediaTypeWithQualityHeaderValue("application/json") }
|
|
},
|
|
Content = new StringContent(@"[ { "+
|
|
$"\"id\": \"{shockerId}\"," +
|
|
$"\"type\": {ControlActionToByte(action)},"+
|
|
$"\"intensity\": {intensity},"+
|
|
$"\"duration\": {duration}"+
|
|
"}]", Encoding.UTF8, new MediaTypeHeaderValue("application/json"))
|
|
};
|
|
request.Headers.Add("OpenShockToken", ((HttpShockerSettings)ShockerSettings).ApiKey);
|
|
HttpResponseMessage response = ((HttpShockerSettings)ShockerSettings).HttpClient.Send(request);
|
|
this.Logger?.Log(LogLevel.Debug, $"{request.RequestUri} response: {response.StatusCode}");
|
|
}
|
|
|
|
private byte ControlActionToByte(ControlAction action)
|
|
{
|
|
return action switch
|
|
{
|
|
ControlAction.Beep => 3,
|
|
ControlAction.Vibrate => 2,
|
|
ControlAction.Shock => 1,
|
|
_ => 0
|
|
};
|
|
}
|
|
|
|
internal OpenShockHttp(HttpShockerSettings settings, ILogger? logger = null) : base(settings, logger)
|
|
{
|
|
|
|
}
|
|
} |