unison/Views/Radios.xaml.cs

173 lines
5.2 KiB
C#
Raw Normal View History

2022-11-11 00:24:13 +00:00
using System.Diagnostics;
2021-10-01 00:24:18 +00:00
using System.Threading.Tasks;
using System.Windows;
using System;
using System.ComponentModel;
using System.Windows.Interop;
using System.Windows.Controls;
2021-10-03 11:54:54 +00:00
using System.Windows.Input;
using System.Collections.Generic;
2022-11-11 00:24:13 +00:00
using unison.Handlers;
using RadioBrowser.Models;
2021-10-01 00:24:18 +00:00
namespace unison
{
public partial class Radios : Window
{
private MPDHandler _mpd;
2022-11-11 00:24:13 +00:00
RadioHandler _radio;
2022-04-17 23:20:43 +00:00
2022-11-11 00:24:13 +00:00
public bool IsConnected() => _radio.IsConnected();
2021-10-01 00:24:18 +00:00
public Radios()
{
InitializeComponent();
2022-11-11 00:24:13 +00:00
Initialize();
2021-10-01 00:24:18 +00:00
}
2021-10-03 11:54:54 +00:00
public async void Initialize()
2021-10-01 00:24:18 +00:00
{
2022-11-11 00:24:13 +00:00
_radio = new RadioHandler();
if (!_radio.IsConnected())
SearchButton.IsEnabled = false;
2022-04-12 21:14:13 +00:00
try
2021-10-03 11:54:54 +00:00
{
2022-04-12 21:14:13 +00:00
CountryList.Items.Add(new CountryListItem { Name = "", Count = 0 });
2022-11-11 00:24:13 +00:00
List<NameAndCount> Countries = await _radio.GetCountries();
2022-04-12 21:14:13 +00:00
foreach (NameAndCount Country in Countries)
2021-10-03 11:54:54 +00:00
{
2022-04-12 21:14:13 +00:00
CountryList.Items.Add(new CountryListItem
{
Name = Country.Name,
Count = Country.Stationcount
});
}
}
catch (Exception e)
{
2022-11-11 00:24:13 +00:00
Trace.WriteLine("Exception while getting countries in RadioBrowser: " + e.Message);
2022-04-12 21:14:13 +00:00
return;
2021-10-03 11:54:54 +00:00
}
2021-10-01 00:24:18 +00:00
}
2021-10-03 11:54:54 +00:00
2022-11-11 00:24:13 +00:00
private static string CleanString(string str)
2021-10-01 00:24:18 +00:00
{
2021-10-03 11:54:54 +00:00
return str.Replace("\r\n", "").Replace("\n", "").Replace("\r", "");
}
2022-11-11 00:24:13 +00:00
private void SearchHandler(object sender, KeyEventArgs e)
{
if (e.Key == Key.Return)
Search_Clicked(null, null);
}
private async void Search_Clicked(object sender, RoutedEventArgs e)
{
try
{
CountryListItem a = (CountryListItem)CountryList.SelectedItem;
await SearchAdvanced(NameSearch.Text, a?.Name, TagSearch.Text);
}
catch (Exception except)
{
Trace.WriteLine("Error on RadioBrowser search: " + except.Message);
}
}
2021-10-03 11:54:54 +00:00
public async Task SearchAdvanced(string name, string country, string tags)
{
try
2021-10-01 00:24:18 +00:00
{
SearchStatus.Text = unison.Resources.Resources.Radio_Loading;
2021-10-01 00:24:18 +00:00
2022-11-11 00:24:13 +00:00
List<StationInfo> advancedSearch = await Task.Run(async () =>
{
2022-11-11 00:24:13 +00:00
return await _radio.AdvancedSearch(new AdvancedSearchOptions
{
Name = name,
Country = country,
TagList = tags
});
});
RadioListGrid.Items.Clear();
if (advancedSearch.Count > 0)
2021-10-03 11:54:54 +00:00
{
SearchStatus.Text = "";
foreach (StationInfo station in advancedSearch)
2021-10-03 11:54:54 +00:00
{
RadioListGrid.Items.Add(new StationListItem
{
Name = CleanString(station.Name),
Country = station.CountryCode,
Codec = station.Codec,
Bitrate = station.Bitrate,
Url = station.Url,
Tags = string.Join(", ", station.Tags)
});
}
FitToContent();
2021-10-03 11:54:54 +00:00
}
else
SearchStatus.Text = unison.Resources.Resources.Radio_NotFound;
}
catch (Exception except)
{
2022-11-11 00:24:13 +00:00
Trace.WriteLine("Error on RadioBrowser search advanced: " + except.Message);
2021-10-03 11:54:54 +00:00
}
2021-10-01 00:24:18 +00:00
}
2021-10-03 11:54:54 +00:00
private void FitToContent()
2021-10-01 00:24:18 +00:00
{
2021-10-03 11:54:54 +00:00
foreach (DataGridColumn column in RadioListGrid.Columns)
column.Width = new DataGridLength(1.0, DataGridLengthUnitType.SizeToCells);
}
private void Row_DoubleClick(object sender, MouseButtonEventArgs e)
{
DataGrid grid = sender as DataGrid;
StationListItem station;
try
{
station = grid.Items[grid.SelectedIndex] as StationListItem;
}
2021-10-03 15:20:14 +00:00
catch (ArgumentOutOfRangeException)
2021-10-03 11:54:54 +00:00
{
2022-11-11 00:24:13 +00:00
Trace.WriteLine("Error: Invalid index.");
2021-10-03 11:54:54 +00:00
return;
}
if (station.Url == null)
{
2022-11-11 00:24:13 +00:00
Trace.WriteLine("Error: Invalid station.");
2021-10-03 11:54:54 +00:00
return;
}
2021-10-01 00:24:18 +00:00
_mpd = (MPDHandler)Application.Current.Properties["mpd"];
2021-10-03 15:20:14 +00:00
_mpd.ClearAddAndPlay(station.Url.AbsoluteUri);
2021-10-01 00:24:18 +00:00
}
2021-10-03 11:54:54 +00:00
private void Reset_Clicked(object sender, RoutedEventArgs e)
2021-10-01 00:24:18 +00:00
{
2021-10-03 11:54:54 +00:00
NameSearch.Text = "";
TagSearch.Text = "";
CountryList.SelectedIndex = 0;
}
2021-10-01 00:24:18 +00:00
private void Window_Closing(object sender, CancelEventArgs e)
{
e.Cancel = true;
WindowState = WindowState.Minimized;
Hide();
}
public void InitHwnd()
{
WindowInteropHelper helper = new(this);
helper.EnsureHandle();
}
}
2021-10-03 11:54:54 +00:00
}