2025-02-16 23:39:26 +01:00
|
|
|
|
using System.Data;
|
|
|
|
|
|
using Insight.Database;
|
2025-02-20 00:23:13 +01:00
|
|
|
|
using PlanTempus.Database.Common;
|
|
|
|
|
|
using PlanTempus.Database.Core;
|
2025-02-21 17:03:49 +01:00
|
|
|
|
using PlanTempus.Database.Core.ConnectionFactory;
|
2025-02-16 23:39:26 +01:00
|
|
|
|
|
2025-02-20 00:23:13 +01:00
|
|
|
|
namespace PlanTempus.Database.Core.DCL
|
2025-02-16 23:39:26 +01:00
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Only a superadmin or similar can create Application Users
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public class SetupDbAdmin : IDbConfigure<SetupDbAdmin.Command>
|
|
|
|
|
|
{
|
|
|
|
|
|
public class Command
|
|
|
|
|
|
{
|
|
|
|
|
|
public required string Schema { get; init; }
|
|
|
|
|
|
public required string User { get; init; }
|
|
|
|
|
|
public required string Password { get; init; }
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Command _command;
|
2025-02-21 23:34:06 +01:00
|
|
|
|
private readonly IDbConnectionFactory _connectionFactory;
|
2025-02-16 23:39:26 +01:00
|
|
|
|
|
2025-02-21 23:34:06 +01:00
|
|
|
|
public SetupDbAdmin(IDbConnectionFactory connectionFactory)
|
2025-02-16 23:39:26 +01:00
|
|
|
|
{
|
2025-02-21 23:34:06 +01:00
|
|
|
|
_connectionFactory = connectionFactory;
|
|
|
|
|
|
}
|
2025-02-16 23:39:26 +01:00
|
|
|
|
|
|
|
|
|
|
|
2025-02-21 23:34:06 +01:00
|
|
|
|
public void With(Command command, ConnectionStringParameters parameters = null)
|
2025-02-16 23:39:26 +01:00
|
|
|
|
{
|
|
|
|
|
|
_command = command;
|
|
|
|
|
|
|
|
|
|
|
|
if (!Validations.IsValidSchemaName(_command.Schema))
|
|
|
|
|
|
throw new ArgumentException("Invalid schema name", _command.Schema);
|
|
|
|
|
|
|
2025-02-21 23:34:06 +01:00
|
|
|
|
using var conn = parameters is null ? _connectionFactory.Create() : _connectionFactory.Create(parameters);
|
|
|
|
|
|
using var transaction = conn.OpenWithTransaction();
|
|
|
|
|
|
try
|
|
|
|
|
|
{
|
|
|
|
|
|
CreateSchema(conn);
|
|
|
|
|
|
CreateRole(conn);
|
|
|
|
|
|
GrantSchemaRights(conn);
|
|
|
|
|
|
|
|
|
|
|
|
transaction.Commit();
|
|
|
|
|
|
}
|
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
|
{
|
|
|
|
|
|
transaction.Rollback();
|
|
|
|
|
|
throw new InvalidOperationException("Failed to SetupApplicationUser in Database", ex);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-02-21 17:03:49 +01:00
|
|
|
|
private void CreateSchema(IDbConnection db)
|
2025-02-16 23:39:26 +01:00
|
|
|
|
{
|
|
|
|
|
|
var sql = $"CREATE SCHEMA IF NOT EXISTS {_command.Schema}";
|
2025-02-21 17:03:49 +01:00
|
|
|
|
db.ExecuteSql(sql);
|
2025-02-16 23:39:26 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-02-21 17:03:49 +01:00
|
|
|
|
private void CreateRole(IDbConnection db)
|
2025-02-16 23:39:26 +01:00
|
|
|
|
{
|
|
|
|
|
|
var sql = $@"
|
|
|
|
|
|
DO $$
|
|
|
|
|
|
BEGIN
|
|
|
|
|
|
IF NOT EXISTS (SELECT FROM pg_roles WHERE rolname = '{_command.User}') THEN
|
|
|
|
|
|
CREATE ROLE {_command.User} WITH CREATEDB CREATEROLE LOGIN PASSWORD '{_command.Password}';
|
|
|
|
|
|
END IF;
|
|
|
|
|
|
END $$;";
|
2025-02-21 23:34:06 +01:00
|
|
|
|
db.ExecuteSql(sql);
|
2025-02-16 23:39:26 +01:00
|
|
|
|
|
|
|
|
|
|
var sql1 = $"ALTER ROLE {_command.User} SET search_path='{_command.Schema}';";
|
2025-02-21 23:34:06 +01:00
|
|
|
|
db.ExecuteSql(sql1);
|
2025-02-20 00:23:13 +01:00
|
|
|
|
|
2025-02-16 23:39:26 +01:00
|
|
|
|
var sql2 = $"ALTER SCHEMA {_command.Schema} OWNER TO {_command.User};";
|
2025-02-21 23:34:06 +01:00
|
|
|
|
db.ExecuteSql(sql2);
|
2025-02-16 23:39:26 +01:00
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-02-21 17:03:49 +01:00
|
|
|
|
private void GrantSchemaRights(IDbConnection db)
|
2025-02-16 23:39:26 +01:00
|
|
|
|
{
|
|
|
|
|
|
// Grant USAGE og alle CREATE rettigheder på schema niveau
|
|
|
|
|
|
//GRANT USAGE ON SCHEMA {_command.Schema} TO {_command.User};
|
2025-02-21 23:34:06 +01:00
|
|
|
|
var sql = $@"GRANT CREATE ON SCHEMA {_command.Schema} TO {_command.User};";
|
2025-02-16 23:39:26 +01:00
|
|
|
|
|
2025-02-21 23:34:06 +01:00
|
|
|
|
db.ExecuteSql(sql);
|
2025-02-16 23:39:26 +01:00
|
|
|
|
|
|
|
|
|
|
// Grant rettigheder på eksisterende og fremtidige tabeller
|
|
|
|
|
|
//var sql1 = $"GRANT ALL PRIVILEGES ON ALL TABLES IN SCHEMA {_command.Schema} TO {_command.User};";
|
|
|
|
|
|
//ExecuteSql(sql1);
|
|
|
|
|
|
|
|
|
|
|
|
//var sql2 = $"ALTER DEFAULT PRIVILEGES IN SCHEMA {_command.Schema} GRANT ALL PRIVILEGES ON TABLES TO {_command.User};";
|
|
|
|
|
|
//ExecuteSql(sql2);
|
|
|
|
|
|
|
|
|
|
|
|
//// Grant sequence rettigheder
|
|
|
|
|
|
//var sql3 = $"GRANT ALL PRIVILEGES ON ALL SEQUENCES IN SCHEMA {_command.Schema} TO {_command.User};";
|
|
|
|
|
|
//ExecuteSql(sql3);
|
|
|
|
|
|
|
|
|
|
|
|
//// Grant execute på functions
|
|
|
|
|
|
//var sql4 = $"GRANT EXECUTE ON ALL FUNCTIONS IN SCHEMA {_command.Schema} TO {_command.User};";
|
|
|
|
|
|
//ExecuteSql(sql4);
|
|
|
|
|
|
|
|
|
|
|
|
//// Grant for fremtidige functions
|
|
|
|
|
|
//var sql5 = $"ALTER DEFAULT PRIVILEGES IN SCHEMA {_command.Schema} GRANT EXECUTE ON FUNCTIONS TO {_command.User};";
|
|
|
|
|
|
//ExecuteSql(sql5);
|
|
|
|
|
|
|
|
|
|
|
|
//// Grant for fremtidige sequences
|
|
|
|
|
|
//var sql6 = $"ALTER DEFAULT PRIVILEGES IN SCHEMA {_command.Schema} GRANT USAGE ON SEQUENCES TO {_command.User};";
|
|
|
|
|
|
//ExecuteSql(sql6);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|