BankProject/Client/Context/WelcomeContext.cs
GabrielTofvesson 856e16b3f2 * Added support for artificial key event triggers
* Added OnClose event to view: triggered when controller is removing view from render queue
* Added more localization
* Added bank transfer
* Fixed account balance reset
* Fixed user copying issues in database: now it does a full deep copy, as opposed to a shallow copy
* Fixed serverside sysinsert checks
* Fixed serverside Account_Get info endpoint
* Other minor things
2018-05-15 18:57:49 +02:00

194 lines
7.1 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");
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
}
}
}