mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 11:42:22 +08:00
143 lines
5.1 KiB
C#
143 lines
5.1 KiB
C#
using System;
|
|
using System.IO;
|
|
using System.Net.Http;
|
|
using System.Threading.Tasks;
|
|
using System.Windows;
|
|
using System.Windows.Input;
|
|
using System.Windows.Threading;
|
|
using System.Xaml;
|
|
using Microsoft.WindowsAPICodePack.Dialogs;
|
|
|
|
namespace BililiveRecorder.WPF.Pages
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for AnnouncementPage.xaml
|
|
/// </summary>
|
|
public partial class AnnouncementPage
|
|
{
|
|
private static readonly HttpClient client;
|
|
|
|
private static MemoryStream AnnouncementCache = null;
|
|
private static DateTimeOffset AnnouncementCacheTime = DateTimeOffset.MinValue;
|
|
|
|
static AnnouncementPage()
|
|
{
|
|
client = new HttpClient();
|
|
client.DefaultRequestHeaders.Add("User-Agent", $"BililiveRecorder/{typeof(AnnouncementPage).Assembly.GetName().Version}-{BuildInfo.HeadShaShort}");
|
|
}
|
|
|
|
public AnnouncementPage()
|
|
{
|
|
InitializeComponent();
|
|
Dispatcher.BeginInvoke(DispatcherPriority.Normal, new Action(async () => await LoadAnnouncementAsync(ignore_cache: false, show_error: false)));
|
|
}
|
|
|
|
private async void Button_Click(object sender, RoutedEventArgs e) => await LoadAnnouncementAsync(ignore_cache: true, show_error: Keyboard.Modifiers.HasFlag(ModifierKeys.Control));
|
|
|
|
private async Task LoadAnnouncementAsync(bool ignore_cache, bool show_error)
|
|
{
|
|
MemoryStream data;
|
|
bool success;
|
|
|
|
Container.Child = null;
|
|
Error.Visibility = Visibility.Collapsed;
|
|
Loading.Visibility = Visibility.Visible;
|
|
|
|
if (AnnouncementCache is not null && !ignore_cache)
|
|
{
|
|
data = AnnouncementCache;
|
|
success = true;
|
|
}
|
|
else
|
|
{
|
|
try
|
|
{
|
|
#if DEBUG
|
|
var resp = await client.GetAsync("http://rec.127-0-0-1.nip.io/wpf/announcement.php");
|
|
#else
|
|
var resp = await client.GetAsync("https://rec.danmuji.org/wpf/announcement.xml");
|
|
#endif
|
|
var stream = await resp.EnsureSuccessStatusCode().Content.ReadAsStreamAsync();
|
|
var mstream = new MemoryStream();
|
|
await stream.CopyToAsync(mstream);
|
|
AnnouncementCacheTime = DateTimeOffset.Now;
|
|
data = mstream;
|
|
success = true;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
data = null;
|
|
success = false;
|
|
if (show_error) MessageBox.Show(ex.ToString(), "加载发生错误");
|
|
}
|
|
}
|
|
|
|
if (success)
|
|
{
|
|
try
|
|
{
|
|
using var stream = new MemoryStream();
|
|
data.Position = 0;
|
|
await data.CopyToAsync(stream);
|
|
stream.Position = 0;
|
|
using var reader = new XamlXmlReader(stream, System.Windows.Markup.XamlReader.GetWpfSchemaContext());
|
|
var obj = System.Windows.Markup.XamlReader.Load(reader);
|
|
if (obj is UIElement elem)
|
|
Container.Child = elem;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
data = null;
|
|
success = false;
|
|
if (show_error) MessageBox.Show(ex.ToString(), "加载发生错误");
|
|
}
|
|
}
|
|
|
|
Loading.Visibility = Visibility.Collapsed;
|
|
if (success)
|
|
{
|
|
RefreshButton.ToolTip = "当前公告获取时间: " + AnnouncementCacheTime.ToString("F");
|
|
AnnouncementCache = data;
|
|
}
|
|
else
|
|
{
|
|
RefreshButton.ToolTip = null;
|
|
Error.Visibility = Visibility.Visible;
|
|
}
|
|
}
|
|
|
|
private async void Button_MouseRightButtonUp(object sender, MouseButtonEventArgs e)
|
|
{
|
|
if (!Keyboard.Modifiers.HasFlag(ModifierKeys.Control) || !Keyboard.Modifiers.HasFlag(ModifierKeys.Alt)) return;
|
|
|
|
var fileDialog = new CommonOpenFileDialog()
|
|
{
|
|
IsFolderPicker = false,
|
|
Multiselect = false,
|
|
Title = "Load local file",
|
|
AddToMostRecentlyUsedList = false,
|
|
EnsurePathExists = true,
|
|
NavigateToShortcut = true,
|
|
};
|
|
if (fileDialog.ShowDialog() == CommonFileDialogResult.Ok)
|
|
{
|
|
try
|
|
{
|
|
var ms = new MemoryStream();
|
|
using (var fs = File.OpenRead(fileDialog.FileName))
|
|
{
|
|
await fs.CopyToAsync(ms);
|
|
}
|
|
AnnouncementCache = ms;
|
|
AnnouncementCacheTime = DateTimeOffset.Now;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
MessageBox.Show(ex.ToString(), "加载发生错误");
|
|
}
|
|
await LoadAnnouncementAsync(ignore_cache: false, show_error: true);
|
|
}
|
|
}
|
|
}
|
|
}
|