using Avalonia; using Avalonia.Controls; using Avalonia.Interactivity; using Avalonia.Markup.Xaml; using hass_workstation_service.Communication.InterProcesCommunication.Models; using hass_workstation_service.Communication.NamedPipe; using JKang.IpcServiceFramework.Client; using Microsoft.Extensions.DependencyInjection; using System; using System.Dynamic; using System.Linq; using System.Text.Json; using UserInterface.Util; using UserInterface.ViewModels; namespace UserInterface.Views { public class AddSensorDialog : Window { private readonly IIpcClient client; public ComboBox comboBox { get; set; } public ComboBox detectionModecomboBox { get; set; } public AddSensorDialog() { this.InitializeComponent(); #if DEBUG this.AttachDevTools(); #endif this.comboBox = this.FindControl("ComboBox"); this.comboBox.Items = Enum.GetValues(typeof(AvailableSensors)).Cast(); this.comboBox = this.FindControl("DetectionModeComboBox"); this.comboBox.Items = Enum.GetValues(typeof(WebcamDetectionMode)).Cast(); // register IPC clients ServiceProvider serviceProvider = new ServiceCollection() .AddNamedPipeIpcClient("addsensor", pipeName: "pipeinternal") .BuildServiceProvider(); // resolve IPC client factory IIpcClientFactory clientFactory = serviceProvider .GetRequiredService>(); // create client this.client = clientFactory.CreateClient("addsensor"); DataContext = new AddSensorViewModel(); } public async void Save(object sender, RoutedEventArgs args) { var item = ((AddSensorViewModel)this.DataContext); dynamic model = new { item.Name, item.Query, item.UpdateInterval, item.WindowName, DetectionMode = item.SelectedDetectionMode }; string json = JsonSerializer.Serialize(model); await this.client.InvokeAsync(x => x.AddSensor(item.SelectedType, json)); Close(); } public void ComboBoxClosed(object sender, SelectionChangedEventArgs args) { var item = ((AddSensorViewModel)this.DataContext); switch (item.SelectedType) { case AvailableSensors.UserNotificationStateSensor: item.Description = "This sensor watches the UserNotificationState. This is normally used in applications to determine if it is appropriate to send a notification but we can use it to expose this state. \n "; item.MoreInfoLink = "https://github.com/sleevezipper/hass-workstation-service#usernotificationstate"; item.ShowDetectionModeOptions = false; item.ShowQueryInput = false; item.ShowWindowNameInput = false; item.UpdateInterval = 5; break; case AvailableSensors.DummySensor: item.Description = "This sensor spits out a random number every second. Useful for testing, maybe you'll find some other use for it."; item.MoreInfoLink = "https://github.com/sleevezipper/hass-workstation-service#dummy"; item.ShowDetectionModeOptions = false; item.ShowQueryInput = false; item.ShowWindowNameInput = false; item.UpdateInterval = 1; break; case AvailableSensors.CPULoadSensor: item.Description = "This sensor checks the current CPU load. It averages the load on all logical cores every second and rounds the output to two decimals."; item.MoreInfoLink = "https://github.com/sleevezipper/hass-workstation-service#cpuload"; item.ShowDetectionModeOptions = false; item.ShowQueryInput = false; item.ShowWindowNameInput = false; item.UpdateInterval = 5; break; case AvailableSensors.CurrentClockSpeedSensor: item.Description = "This sensor returns the BIOS configured baseclock for the processor."; item.MoreInfoLink = "https://github.com/sleevezipper/hass-workstation-service#currentclockspeed"; item.ShowDetectionModeOptions = false; item.ShowQueryInput = false; item.ShowWindowNameInput = false; item.UpdateInterval = 3600; break; case AvailableSensors.WMIQuerySensor: item.Description = "This advanced sensor executes a user defined WMI query and exposes the result. The query should return a single value."; item.MoreInfoLink = "https://github.com/sleevezipper/hass-workstation-service#wmiquerysensor"; item.ShowDetectionModeOptions = false; item.ShowQueryInput = true; item.ShowWindowNameInput = false; item.UpdateInterval = 10; break; case AvailableSensors.MemoryUsageSensor: item.Description = "This sensor calculates the percentage of used memory."; item.MoreInfoLink = "https://github.com/sleevezipper/hass-workstation-service#usedmemory"; item.ShowDetectionModeOptions = false; item.ShowQueryInput = false; item.ShowWindowNameInput = false; item.UpdateInterval = 10; break; case AvailableSensors.ActiveWindowSensor: item.Description = "This sensor exposes the name of the currently active window."; item.MoreInfoLink = "https://github.com/sleevezipper/hass-workstation-service#activewindow"; item.ShowDetectionModeOptions = false; item.ShowQueryInput = false; item.ShowWindowNameInput = false; item.UpdateInterval = 5; break; case AvailableSensors.WebcamActiveSensor: item.Description = "This sensor shows if the webcam is currently being used."; item.MoreInfoLink = "https://github.com/sleevezipper/hass-workstation-service#webcamactive"; item.ShowDetectionModeOptions = true; item.ShowQueryInput = false; item.UpdateInterval = 10; break; case AvailableSensors.MicrophoneActiveSensor: item.Description = "This sensor shows if the microphone is currently in use."; item.MoreInfoLink = "https://github.com/sleevezipper/hass-workstation-service#microphoneactive"; item.ShowDetectionModeOptions = false; item.ShowQueryInput = false; item.UpdateInterval = 10; break; case AvailableSensors.NamedWindowSensor: item.Description = "This sensor returns true if a window was found with the name you search for. "; item.MoreInfoLink = "https://github.com/sleevezipper/hass-workstation-service#namedwindow"; item.ShowQueryInput = false; item.ShowWindowNameInput = true; item.UpdateInterval = 5; break; case AvailableSensors.IdleTimeSensor: item.Description = "This sensor returns the amount of seconds the workstation has been idle for. "; item.MoreInfoLink = "https://github.com/sleevezipper/hass-workstation-service#idletime"; item.ShowQueryInput = false; item.ShowWindowNameInput = false; item.UpdateInterval = 5; break; case AvailableSensors.UpTimeSensor: item.Description = "This sensor returns the up time from windows in seconds"; item.MoreInfoLink = "https://github.com/sleevezipper/hass-workstation-service#uptime"; item.ShowQueryInput = false; item.ShowWindowNameInput = false; item.UpdateInterval = 5; break; default: item.Description = null; item.MoreInfoLink = null; item.ShowQueryInput = false; break; } } public void OpenInfo(object sender, RoutedEventArgs args) { var item = ((AddSensorViewModel)this.DataContext); BrowserUtil.OpenBrowser(item.MoreInfoLink); } private void InitializeComponent() { AvaloniaXamlLoader.Load(this); } } }