mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-03 23:05:00 +00:00
66 lines
1.9 KiB
C#
66 lines
1.9 KiB
C#
using Newtonsoft.Json;
|
|
using Newtonsoft.Json.Linq;
|
|
using PepperDash.Core;
|
|
using PepperDash.Core.Logging;
|
|
using PepperDash.Essentials.AppServer.Messengers;
|
|
|
|
namespace PepperDash.Essentials.Touchpanel
|
|
{
|
|
/// <summary>
|
|
/// Represents a ITswAppControlMessenger
|
|
/// </summary>
|
|
public class ITswAppControlMessenger : MessengerBase
|
|
{
|
|
private readonly ITswAppControl _appControl;
|
|
|
|
public ITswAppControlMessenger(string key, string messagePath, Device device) : base(key, messagePath, device)
|
|
{
|
|
_appControl = device as ITswAppControl;
|
|
}
|
|
|
|
protected override void RegisterActions()
|
|
{
|
|
if (_appControl == null)
|
|
{
|
|
this.LogInformation("{deviceKey} does not implement ITswAppControl", _device.Key);
|
|
return;
|
|
}
|
|
|
|
AddAction($"/fullStatus", (id, context) => SendFullStatus());
|
|
|
|
AddAction($"/openApp", (id, context) => _appControl.OpenApp());
|
|
|
|
AddAction($"/closeApp", (id, context) => _appControl.CloseOpenApp());
|
|
|
|
AddAction($"/hideApp", (id, context) => _appControl.HideOpenApp());
|
|
|
|
_appControl.AppOpenFeedback.OutputChange += (s, a) =>
|
|
{
|
|
PostStatusMessage(JToken.FromObject(new
|
|
{
|
|
appOpen = a.BoolValue
|
|
}));
|
|
};
|
|
}
|
|
|
|
private void SendFullStatus()
|
|
{
|
|
var message = new TswAppStateMessage
|
|
{
|
|
AppOpen = _appControl.AppOpenFeedback.BoolValue,
|
|
};
|
|
|
|
PostStatusMessage(message);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Represents a TswAppStateMessage
|
|
/// </summary>
|
|
public class TswAppStateMessage : DeviceStateMessageBase
|
|
{
|
|
[JsonProperty("appOpen", NullValueHandling = NullValueHandling.Ignore)]
|
|
public bool? AppOpen { get; set; }
|
|
}
|
|
}
|