BililiveRecorder/BililiveRecorder.WPF/Pages/AdvancedSettingsPage.xaml.cs

80 lines
2.9 KiB
C#
Raw Normal View History

2020-11-27 18:51:02 +08:00
using System;
using System.Runtime.Serialization;
2021-05-18 22:36:37 +08:00
using System.Threading.Tasks;
2020-11-27 18:51:02 +08:00
using System.Windows;
2021-07-05 23:30:13 +08:00
using BililiveRecorder.Core.Api.Http;
using Newtonsoft.Json.Linq;
using Serilog;
2020-11-27 18:51:02 +08:00
2021-07-05 23:30:13 +08:00
#nullable enable
2020-11-27 18:51:02 +08:00
namespace BililiveRecorder.WPF.Pages
{
/// <summary>
/// Interaction logic for AdvancedSettingsPage.xaml
/// </summary>
public partial class AdvancedSettingsPage
{
2021-07-05 23:30:13 +08:00
private static readonly ILogger logger = Log.ForContext<AdvancedSettingsPage>();
private readonly HttpApiClient? httpApiClient;
public AdvancedSettingsPage(HttpApiClient? httpApiClient)
2020-11-27 18:51:02 +08:00
{
2021-01-01 14:46:27 +08:00
this.InitializeComponent();
2021-07-05 23:30:13 +08:00
this.httpApiClient = httpApiClient;
}
public AdvancedSettingsPage() : this((HttpApiClient?)(RootPage.ServiceProvider?.GetService(typeof(HttpApiClient))))
{
2020-11-27 18:51:02 +08:00
}
2021-05-18 22:36:37 +08:00
private void Crash_Click(object sender, RoutedEventArgs e) => throw new TestException("test crash triggered");
public class TestException : Exception
{
public TestException() { }
public TestException(string message) : base(message) { }
public TestException(string message, Exception innerException) : base(message, innerException) { }
protected TestException(SerializationInfo info, StreamingContext context) : base(info, context) { }
}
2021-05-18 22:36:37 +08:00
private void Throw_In_Task_Click(object sender, RoutedEventArgs e) => _ = Task.Run(() =>
{
throw new TestException("test task exception triggered");
});
2021-07-05 23:30:13 +08:00
#pragma warning disable VSTHRD100 // Avoid async void methods
private async void TestCookie_Click(object sender, RoutedEventArgs e)
#pragma warning restore VSTHRD100 // Avoid async void methods
{
try
{
await this.TestCookieAsync().ConfigureAwait(false);
}
catch (Exception ex)
{
logger.Warning(ex, "Exception in TestCookie");
MessageBox.Show(ex.ToString(), "Cookie Test - Error", MessageBoxButton.OK);
}
}
private async Task TestCookieAsync()
{
if (this.httpApiClient is null)
{
MessageBox.Show("No Http Client Available", "Cookie Test - Failed", MessageBoxButton.OK, MessageBoxImage.Warning);
return;
}
var resp = await this.httpApiClient.MainHttpClient.GetStringAsync("https://api.live.bilibili.com/xlive/web-ucenter/user/get_user_info").ConfigureAwait(false);
var jo = JObject.Parse(resp);
if (jo["code"]?.ToObject<int>() != 0)
{
MessageBox.Show("Response:\n" + resp, "Cookie Test - Failed", MessageBoxButton.OK, MessageBoxImage.Warning);
return;
}
MessageBox.Show("User: " + jo["data"]?["uname"]?.ToObject<string>(), "Cookie Test - Successed", MessageBoxButton.OK, MessageBoxImage.Information);
}
2020-11-27 18:51:02 +08:00
}
}