* View close triggers don't require an action to be considered valid any more * Added exit prompt * Sorted SessionContext to be a smidge more readable * Added instance fields for referencing to views in SessionContext * BankNetInteractor now completely cleans its state when Logout() is called
196 lines
7.2 KiB
C#
196 lines
7.2 KiB
C#
using Client.ConsoleForms;
|
|
using Client.ConsoleForms.Graphics;
|
|
using ConsoleForms;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Tofvesson.Collections;
|
|
|
|
namespace Client
|
|
{
|
|
public sealed class WelcomeContext : Context
|
|
{
|
|
private readonly BankNetInteractor interactor;
|
|
private Promise promise;
|
|
private bool forceDestroy = true;
|
|
|
|
public WelcomeContext(ContextManager manager, BankNetInteractor connection) : base(manager, "Setup", "Common")
|
|
{
|
|
this.interactor = connection;
|
|
|
|
// Prepare events and stuff
|
|
|
|
// Just close when anything is selected and "submitted"
|
|
RegisterSelectListeners((s, i, v) => controller.CloseView(s), "DuplicateAccountError", "EmptyFieldError", "IPError", "PortError", "AuthError", "PasswordMismatchError");
|
|
|
|
// If Escape key is pressed, suggest to controller to terminate
|
|
GetView("WelcomeScreen").OnBackEvent = v => Show("quit");
|
|
|
|
GetView<InputView>("Login").SubmissionsListener = i =>
|
|
{
|
|
bool success = true;
|
|
|
|
foreach (var input in i.Inputs)
|
|
if (input.Text.Length == 0)
|
|
{
|
|
success = false;
|
|
input.SelectBackgroundColor = ConsoleColor.Red;
|
|
input.BackgroundColor = ConsoleColor.DarkRed;
|
|
}
|
|
|
|
|
|
if (success)
|
|
{
|
|
// Authenticate against server here
|
|
Show("AuthWait");
|
|
try
|
|
{
|
|
promise = Promise.AwaitPromise(interactor.Authenticate(i.Inputs[0].Text, i.Inputs[1].Text));
|
|
}
|
|
catch
|
|
{
|
|
Hide("AuthWait");
|
|
Show("ConnectionError");
|
|
return;
|
|
}
|
|
//promise = prom.Result;
|
|
promise.Subscribe =
|
|
response =>
|
|
{
|
|
Hide("AuthWait");
|
|
if (response.Value.StartsWith("ERROR") || response.Value.Equals("False")) // Auth failure or general error
|
|
Show("AuthError");
|
|
else
|
|
{
|
|
forceDestroy = false;
|
|
manager.LoadContext(new SessionContext(manager, interactor));
|
|
}
|
|
};
|
|
}
|
|
else Show("EmptyFieldError");
|
|
};
|
|
|
|
// For a smooth effect
|
|
GetView<InputView>("Login").InputListener = (v, c, i, t) =>
|
|
{
|
|
c.BackgroundColor = v.DefaultBackgroundColor;
|
|
c.SelectBackgroundColor = v.DefaultSelectBackgroundColor;
|
|
return true;
|
|
};
|
|
|
|
GetView<InputView>("Register").SubmissionsListener = i =>
|
|
{
|
|
bool success = true, mismatch = false;
|
|
|
|
foreach (var input in i.Inputs)
|
|
{
|
|
if (input.Text.Length == 0)
|
|
{
|
|
success = false;
|
|
input.SelectBackgroundColor = ConsoleColor.Red;
|
|
input.BackgroundColor = ConsoleColor.DarkRed;
|
|
}
|
|
}
|
|
|
|
mismatch = !i.Inputs[1].Text.Equals(i.Inputs[2].Text);
|
|
if (success && !mismatch)
|
|
{
|
|
void a()
|
|
{
|
|
Show("RegWait");
|
|
try
|
|
{
|
|
promise = Promise.AwaitPromise(interactor.Register(i.Inputs[0].Text, i.Inputs[1].Text));
|
|
}
|
|
catch
|
|
{
|
|
Hide("RegWait");
|
|
Show("ConnectionError");
|
|
return;
|
|
}
|
|
promise.Subscribe =
|
|
response =>
|
|
{
|
|
Hide("RegWait");
|
|
if (!bool.Parse(response.Value))
|
|
Show("DuplicateAccountError");
|
|
else
|
|
{
|
|
forceDestroy = false;
|
|
manager.LoadContext(new SessionContext(manager, interactor));
|
|
}
|
|
};
|
|
}
|
|
|
|
if (i.Inputs[1].Text.Length < 5 || i.Inputs[1].Text.StartsWith("asdfasdf") || i.Inputs[1].Text.StartsWith("asdf1234"))
|
|
{
|
|
var warning = GetView<DialogView>("WeakPasswordWarning");
|
|
warning.RegisterSelectListener((wrn, idx, sel) =>
|
|
{
|
|
Hide(warning);
|
|
if (idx == 0) a();
|
|
});
|
|
Show(warning);
|
|
}
|
|
else a();
|
|
}
|
|
else if (mismatch) Show("PasswordMismatchError");
|
|
else Show("EmptyFieldError");
|
|
};
|
|
|
|
GetView<InputView>("Register").InputListener = (v, c, i, t) =>
|
|
{
|
|
c.BackgroundColor = v.DefaultBackgroundColor;
|
|
c.SelectBackgroundColor = v.DefaultSelectBackgroundColor;
|
|
return true;
|
|
};
|
|
}
|
|
|
|
public override void OnCreate()
|
|
{
|
|
// This was set up back when the connection was persistent
|
|
//token = interactor.RegisterListener((c, s) =>
|
|
//{
|
|
// if(!s) controller.Popup("The connection to the server was severed! ", 4500, ConsoleColor.DarkRed, () => manager.LoadContext(new NetContext(manager)));
|
|
//});
|
|
|
|
// Add the initial view
|
|
Show("WelcomeScreen");
|
|
}
|
|
|
|
public override void OnDestroy()
|
|
{
|
|
GetView<InputView>("Register").SelectedField = 0;
|
|
foreach (var v in GetView<InputView>("Register").Inputs)
|
|
{
|
|
v.Text = "";
|
|
v.SelectIndex = 0;
|
|
v.RenderStart = 0;
|
|
}
|
|
|
|
((InputView)views.GetNamed("Login")).SelectedField = 0;
|
|
foreach (var v in GetView<InputView>("Login").Inputs)
|
|
{
|
|
v.Text = "";
|
|
v.SelectIndex = 0;
|
|
v.RenderStart = 0;
|
|
}
|
|
|
|
// Close views
|
|
HideAll();
|
|
|
|
// Unsubscribe from events
|
|
if (promise != null && !promise.HasValue) promise.Subscribe = null;
|
|
|
|
// Stop listening
|
|
//interactor.UnregisterListener(token);
|
|
|
|
#pragma warning disable CS4014 // Because this call is not awaited, execution of the current method continues before the call is completed
|
|
if (forceDestroy) interactor.CancelAll();
|
|
#pragma warning restore CS4014 // Because this call is not awaited, execution of the current method continues before the call is completed
|
|
}
|
|
}
|
|
}
|