mirror of
https://github.com/hmaxnl/DotBased.git
synced 2025-02-23 15:15:01 +01:00
117 lines
4.9 KiB
C#
117 lines
4.9 KiB
C#
using DotBased.AspNet.Authority.Models.Authority;
|
|
using DotBased.AspNet.Authority.Repositories;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace DotBased.AspNet.Authority.EFCore.Repositories;
|
|
|
|
public class RoleRepository(IDbContextFactory<AuthorityContext> contextFactory) : RepositoryBase, IRoleRepository
|
|
{
|
|
public async Task<ListResult<AuthorityRoleItem>> GetRolesAsync(int limit = 20, int offset = 0, string search = "", CancellationToken cancellationToken = default)
|
|
{
|
|
try
|
|
{
|
|
await using var context = await contextFactory.CreateDbContextAsync(cancellationToken);
|
|
var query = context.Roles.AsQueryable();
|
|
if (!string.IsNullOrWhiteSpace(search))
|
|
{
|
|
query = query.Where(r =>
|
|
$"{r.Name} {r.Id}".Contains(search, StringComparison.CurrentCultureIgnoreCase));
|
|
}
|
|
|
|
var total = await query.CountAsync(cancellationToken);
|
|
var select = await query.OrderBy(r => r.Name).Skip(offset).Take(limit).Select(r => new AuthorityRoleItem()
|
|
{
|
|
Id = r.Id,
|
|
Name = r.Name
|
|
}).ToListAsync(cancellationToken: cancellationToken);
|
|
return ListResult<AuthorityRoleItem>.Ok(select, total, limit, offset);
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
return HandleExceptionListResult<AuthorityRoleItem>("Failed to get roles.", e);
|
|
}
|
|
}
|
|
|
|
public async Task<Result<AuthorityRole>> GetRoleByIdAsync(string id, CancellationToken cancellationToken = default)
|
|
{
|
|
try
|
|
{
|
|
await using var context = await contextFactory.CreateDbContextAsync(cancellationToken);
|
|
if (!Guid.TryParse(id, out var guid))
|
|
{
|
|
return Result<AuthorityRole>.Failed("Invalid id!");
|
|
}
|
|
var role = await context.Roles.Where(r => r.Id == guid).Include(r => r.Attributes).FirstOrDefaultAsync(cancellationToken: cancellationToken);
|
|
return Result<AuthorityRole>.HandleResult(role, "Role not found!");
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
return HandleExceptionResult<AuthorityRole>("Failed to get role!", e);
|
|
}
|
|
}
|
|
|
|
public async Task<Result<AuthorityRole>> CreateRoleAsync(AuthorityRole role, CancellationToken cancellationToken = default)
|
|
{
|
|
try
|
|
{
|
|
await using var context = await contextFactory.CreateDbContextAsync(cancellationToken);
|
|
if (role.Id == Guid.Empty)
|
|
{
|
|
return Result<AuthorityRole>.Failed("Id cannot be empty!");
|
|
}
|
|
var entity = context.Roles.Add(role);
|
|
var saveResult = await context.SaveChangesAsync(cancellationToken);
|
|
return saveResult <= 0 ? Result<AuthorityRole>.Failed("Failed to create role!") : Result<AuthorityRole>.Ok(entity.Entity);
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
return HandleExceptionResult<AuthorityRole>("Failed to create role!", e);
|
|
}
|
|
}
|
|
|
|
public async Task<Result<AuthorityRole>> UpdateRoleAsync(AuthorityRole role, CancellationToken cancellationToken = default)
|
|
{
|
|
try
|
|
{
|
|
await using var context = await contextFactory.CreateDbContextAsync(cancellationToken);
|
|
var currentRole = await context.Roles.FirstOrDefaultAsync(r => r.Id == role.Id, cancellationToken: cancellationToken);
|
|
if (currentRole == null)
|
|
{
|
|
return Result<AuthorityRole>.Failed("Role not found!");
|
|
}
|
|
|
|
if (role.Version != currentRole.Version)
|
|
{
|
|
return Result<AuthorityRole>.Failed("Role version does not match, version validation failed!");
|
|
}
|
|
|
|
var entity = context.Roles.Update(role);
|
|
var saveResult = await context.SaveChangesAsync(cancellationToken);
|
|
return saveResult <= 0 ? Result<AuthorityRole>.Failed("Failed to update role!") : Result<AuthorityRole>.Ok(entity.Entity);
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
return HandleExceptionResult<AuthorityRole>("Failed to update role!", e);
|
|
}
|
|
}
|
|
|
|
public async Task<Result> DeleteRoleAsync(AuthorityRole role, CancellationToken cancellationToken = default)
|
|
{
|
|
try
|
|
{
|
|
await using var context = await contextFactory.CreateDbContextAsync(cancellationToken);
|
|
var currentRole = await context.Roles.FirstOrDefaultAsync(r => r.Id == role.Id, cancellationToken: cancellationToken);
|
|
if (currentRole == null)
|
|
{
|
|
return Result.Failed("Role not found, could not delete!");
|
|
}
|
|
context.Roles.Remove(currentRole);
|
|
var saveResult = await context.SaveChangesAsync(cancellationToken);
|
|
return saveResult <= 0 ? Result.Failed("Failed to delete role!") : Result.Ok();
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
return HandleException("Failed to delete role!", e);
|
|
}
|
|
}
|
|
} |