Compare commits
3 Commits
a902d9eb81
...
5400e0c873
Author | SHA1 | Date | |
---|---|---|---|
5400e0c873 | |||
1fd6c8657a | |||
d09011d25a |
@ -11,6 +11,7 @@ using Mirea.Api.Endpoint.Common.Interfaces;
|
|||||||
using Mirea.Api.Endpoint.Common.Services;
|
using Mirea.Api.Endpoint.Common.Services;
|
||||||
using Mirea.Api.Endpoint.Configuration.General;
|
using Mirea.Api.Endpoint.Configuration.General;
|
||||||
using Mirea.Api.Endpoint.Configuration.General.Settings;
|
using Mirea.Api.Endpoint.Configuration.General.Settings;
|
||||||
|
using Mirea.Api.Endpoint.Configuration.General.Validators;
|
||||||
using MySqlConnector;
|
using MySqlConnector;
|
||||||
using Npgsql;
|
using Npgsql;
|
||||||
using StackExchange.Redis;
|
using StackExchange.Redis;
|
||||||
@ -28,9 +29,11 @@ namespace Mirea.Api.Endpoint.Controllers.Configuration;
|
|||||||
[MaintenanceModeIgnore]
|
[MaintenanceModeIgnore]
|
||||||
public class SetupController(ISetupToken setupToken, IMaintenanceModeNotConfigureService notConfigureService, IMemoryCache cache) : BaseController
|
public class SetupController(ISetupToken setupToken, IMaintenanceModeNotConfigureService notConfigureService, IMemoryCache cache) : BaseController
|
||||||
{
|
{
|
||||||
private const string CacheGeneralKey = "config_part";
|
private const string CacheGeneralKey = "config_general";
|
||||||
|
private const string CacheAdminKey = "config_admin";
|
||||||
|
|
||||||
private GeneralConfig GeneralConfig
|
private GeneralConfig GeneralConfig
|
||||||
{
|
{
|
||||||
get => cache.Get<GeneralConfig>(CacheGeneralKey) ?? new GeneralConfig();
|
get => cache.Get<GeneralConfig>(CacheGeneralKey) ?? new GeneralConfig();
|
||||||
set => cache.Set(CacheGeneralKey, value);
|
set => cache.Set(CacheGeneralKey, value);
|
||||||
}
|
}
|
||||||
@ -112,11 +115,11 @@ public class SetupController(ISetupToken setupToken, IMaintenanceModeNotConfigur
|
|||||||
[BadRequestResponse]
|
[BadRequestResponse]
|
||||||
public ActionResult<bool> SetMysql([FromBody] DatabaseRequest request)
|
public ActionResult<bool> SetMysql([FromBody] DatabaseRequest request)
|
||||||
{
|
{
|
||||||
string connectionString = $"Server={request.Server}:{request.Port};Uid={request.User};Database={request.Database}";
|
string connectionString = $"Server={request.Server}:{request.Port};Uid={request.User};Database={request.Database};";
|
||||||
if (request.Password != null)
|
if (request.Password != null)
|
||||||
connectionString += $";Pwd={request.Password}";
|
connectionString += $"Pwd={request.Password};";
|
||||||
if (request.Ssl)
|
if (request.Ssl)
|
||||||
connectionString += ";SslMode=Require;";
|
connectionString += "SslMode=Require;";
|
||||||
|
|
||||||
return SetDatabase<MySqlConnection, MySqlException>(connectionString, DbSettings.DatabaseEnum.Mysql);
|
return SetDatabase<MySqlConnection, MySqlException>(connectionString, DbSettings.DatabaseEnum.Mysql);
|
||||||
}
|
}
|
||||||
@ -190,6 +193,16 @@ public class SetupController(ISetupToken setupToken, IMaintenanceModeNotConfigur
|
|||||||
return Ok(true);
|
return Ok(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[HttpPost("CreateAdmin")]
|
||||||
|
[TokenAuthentication]
|
||||||
|
[BadRequestResponse]
|
||||||
|
public ActionResult<string> CreateAdmin([FromBody] CreateUserRequest user)
|
||||||
|
{
|
||||||
|
// todo: change CreateUserRequest to Domain entity
|
||||||
|
cache.Set(CacheAdminKey, user);
|
||||||
|
return Ok(true);
|
||||||
|
}
|
||||||
|
|
||||||
[HttpPost("SetLogging")]
|
[HttpPost("SetLogging")]
|
||||||
[TokenAuthentication]
|
[TokenAuthentication]
|
||||||
[BadRequestResponse]
|
[BadRequestResponse]
|
||||||
@ -266,5 +279,31 @@ public class SetupController(ISetupToken setupToken, IMaintenanceModeNotConfigur
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[HttpPost("Submit")]
|
||||||
|
[TokenAuthentication]
|
||||||
|
[BadRequestResponse]
|
||||||
|
public ActionResult<bool> Submit()
|
||||||
|
{
|
||||||
|
if (!new SettingsRequiredValidator(GeneralConfig).AreSettingsValid())
|
||||||
|
throw new ControllerArgumentException("The necessary data has not been configured.");
|
||||||
|
|
||||||
|
// todo: change CreateUserRequest to Domain entity
|
||||||
|
if (!cache.TryGetValue(CacheAdminKey, out CreateUserRequest? user) || user == null)
|
||||||
|
throw new ControllerArgumentException("The administrator's data was not set.");
|
||||||
|
|
||||||
|
if (System.IO.File.Exists(PathBuilder.Combine(GeneralConfig.FilePath)))
|
||||||
|
System.IO.File.Delete(PathBuilder.Combine(GeneralConfig.FilePath));
|
||||||
|
|
||||||
|
System.IO.File.WriteAllText(PathBuilder.Combine("admin.json"), JsonSerializer.Serialize(user));
|
||||||
|
|
||||||
|
System.IO.File.WriteAllText(
|
||||||
|
PathBuilder.Combine(GeneralConfig.FilePath),
|
||||||
|
JsonSerializer.Serialize(GeneralConfig, new JsonSerializerOptions
|
||||||
|
{
|
||||||
|
WriteIndented = true
|
||||||
|
})
|
||||||
|
);
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user