You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
100 lines
3.9 KiB
100 lines
3.9 KiB
using Dapplo.Microsoft.Extensions.Hosting.WinForms;
|
|
using OpenIddict.Client;
|
|
using static OpenIddict.Abstractions.OpenIddictConstants;
|
|
using static OpenIddict.Abstractions.OpenIddictExceptions;
|
|
using static OpenIddict.Client.WebIntegration.OpenIddictClientWebIntegrationConstants;
|
|
|
|
namespace OpenIddict.Sandbox.WinForms.Client
|
|
{
|
|
public partial class MainForm : Form, IWinFormsShell
|
|
{
|
|
private readonly OpenIddictClientService _service;
|
|
|
|
public MainForm(OpenIddictClientService service)
|
|
{
|
|
_service = service ?? throw new ArgumentNullException(nameof(service));
|
|
|
|
InitializeComponent();
|
|
}
|
|
|
|
private async void LocalLoginButton_Click(object sender, EventArgs e)
|
|
=> await AuthenticateAsync("Local");
|
|
|
|
private async void GitHubLoginButton_Click(object sender, EventArgs e)
|
|
=> await AuthenticateAsync(Providers.GitHub);
|
|
|
|
private async Task AuthenticateAsync(string provider)
|
|
{
|
|
using var source = new CancellationTokenSource(delay: TimeSpan.FromSeconds(90));
|
|
|
|
try
|
|
{
|
|
// Ask OpenIddict to initiate the authentication flow (typically, by
|
|
// starting the system browser) and wait for the user to complete it.
|
|
var (_, _, principal) = await _service.AuthenticateInteractivelyAsync(
|
|
provider, cancellationToken: source.Token);
|
|
|
|
#if SUPPORTS_WINFORMS_TASK_DIALOG
|
|
TaskDialog.ShowDialog(new TaskDialogPage
|
|
{
|
|
Caption = "Authentication successful",
|
|
Heading = "Authentication successful",
|
|
Icon = TaskDialogIcon.ShieldSuccessGreenBar,
|
|
Text = $"Welcome, {principal.FindFirst(Claims.Name)!.Value}."
|
|
});
|
|
#else
|
|
MessageBox.Show($"Welcome, {principal.FindFirst(Claims.Name)!.Value}.",
|
|
"Authentication successful", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
|
#endif
|
|
}
|
|
|
|
catch (OperationCanceledException)
|
|
{
|
|
#if SUPPORTS_WINFORMS_TASK_DIALOG
|
|
TaskDialog.ShowDialog(new TaskDialogPage
|
|
{
|
|
Caption = "Authentication timed out",
|
|
Heading = "Authentication timed out",
|
|
Icon = TaskDialogIcon.Warning,
|
|
Text = "The authentication process was aborted."
|
|
});
|
|
#else
|
|
MessageBox.Show("The authentication process was aborted.",
|
|
"Authentication timed out", MessageBoxButtons.OK, MessageBoxIcon.Warning);
|
|
#endif
|
|
}
|
|
|
|
catch (ProtocolException exception) when (exception.Error is Errors.AccessDenied)
|
|
{
|
|
#if SUPPORTS_WINFORMS_TASK_DIALOG
|
|
TaskDialog.ShowDialog(new TaskDialogPage
|
|
{
|
|
Caption = "Authorization denied",
|
|
Heading = "Authorization denied",
|
|
Icon = TaskDialogIcon.Warning,
|
|
Text = "The authorization was denied by the end user."
|
|
});
|
|
#else
|
|
MessageBox.Show("The authorization was denied by the end user.",
|
|
"Authorization denied", MessageBoxButtons.OK, MessageBoxIcon.Warning);
|
|
#endif
|
|
}
|
|
|
|
catch
|
|
{
|
|
#if SUPPORTS_WINFORMS_TASK_DIALOG
|
|
TaskDialog.ShowDialog(new TaskDialogPage
|
|
{
|
|
Caption = "Authentication failed",
|
|
Heading = "Authentication failed",
|
|
Icon = TaskDialogIcon.Error,
|
|
Text = "An error occurred while trying to authenticate the user."
|
|
});
|
|
#else
|
|
MessageBox.Show("An error occurred while trying to authenticate the user.",
|
|
"Authentication failed", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
#endif
|
|
}
|
|
}
|
|
}
|
|
}
|