Application User setup WIP

This commit is contained in:
Janus Knudsen 2025-02-11 17:07:01 +01:00
parent c83442b4af
commit cb6dd39596
16 changed files with 362 additions and 314 deletions

View file

@ -29,7 +29,7 @@ namespace SetupInfrastructure
{
do
{
Console.WriteLine("Input <username>:<password>");
Console.WriteLine("Input username:password for a superadmin role");
userPass = Console.ReadLine() ?? string.Empty;
} while (!userPass.Contains(":") || userPass.Split(":").Length != 2 ||
string.IsNullOrEmpty(userPass.Split(":")[0]) ||
@ -41,8 +41,10 @@ namespace SetupInfrastructure
);
_container = new Startup().ConfigureContainer(ctp);
if (TestDbRole())
if (IsSuperAdmin())
{
var setup = _container.Resolve<Database.Core.DCL.SetupApplicationUser>();
setup.With(new Database.Core.DCL.SetupApplicationUser.Command { Password = "3911", Schema = "system", User = "sathumper" });
// SetupApplicationUser
// SetupIdentitySystem
@ -70,7 +72,7 @@ namespace SetupInfrastructure
}
static bool TestDbRole()
static bool IsSuperAdmin()
{
var backgroundColor = Console.BackgroundColor;
var foregroundColor = Console.ForegroundColor;