[CHANGE] Managers

This commit is contained in:
max 2025-02-24 16:35:23 +01:00
parent 79d8fcfb8d
commit e65b937128
3 changed files with 55 additions and 30 deletions

View File

@ -1,10 +1,11 @@
using DotBased.AspNet.Authority.Models.Authority;
namespace DotBased.AspNet.Authority.Managers; namespace DotBased.AspNet.Authority.Managers;
public partial class AuthorityManager public partial class AuthorityManager
{ {
/* public async Task<ListResult<AuthorityGroupItem>> GetUserGroupsAsync(AuthorityUser user, CancellationToken cancellationToken = default)
* - Validate User & Group {
* - Check if user is already in group (if already in group return) return ListResult<AuthorityGroupItem>.Failed("Not implemented!");
* - Add to UsersGroups table }
*/
} }

View File

@ -1,34 +1,36 @@
using DotBased.AspNet.Authority.Models;
using DotBased.AspNet.Authority.Models.Authority; using DotBased.AspNet.Authority.Models.Authority;
namespace DotBased.AspNet.Authority.Managers; namespace DotBased.AspNet.Authority.Managers;
public partial class AuthorityManager public partial class AuthorityManager
{ {
public async Task<Result<AuthorityRole>> CreateRoleAsync(AuthorityRole role, CancellationToken? cancellationToken = null) public async Task<AuthorityResult<AuthorityRole>> CreateRoleAsync(AuthorityRole role, CancellationToken cancellationToken = default)
{ {
return Result<AuthorityRole>.Failed("Not implemented!"); role.Version = GenerateVersion();
var createResult = await roleRepository.CreateRoleAsync(role, cancellationToken);
return AuthorityResult<AuthorityRole>.FromResult(createResult);
} }
public async Task<Result> DeleteRoleAsync(AuthorityRole role, CancellationToken? cancellationToken = null) public async Task<Result> DeleteRoleAsync(AuthorityRole role, CancellationToken cancellationToken = default)
{ {
return Result.Failed("Not implemented!"); var result = await roleRepository.DeleteRoleAsync(role, cancellationToken);
return result;
} }
public async Task<Result<AuthorityRole>> UpdateRoleAsync(AuthorityRole role, CancellationToken? cancellationToken = null) public async Task<Result<AuthorityRole>> UpdateRoleAsync(AuthorityRole role, CancellationToken cancellationToken = default)
{ {
return Result<AuthorityRole>.Failed("Not implemented!"); var result = await roleRepository.UpdateRoleAsync(role, cancellationToken);
return result;
} }
public async Task<ListResult<AuthorityRole>> GetRolesAsync(int limit = 20, int offset = 0, string search = "", CancellationToken? cancellationToken = null) public async Task<ListResult<AuthorityRoleItem>> GetRolesAsync(int limit = 20, int offset = 0, string search = "", CancellationToken cancellationToken = default)
{ {
/* var searchResult = await roleRepository.GetRolesAsync(limit, offset, search, cancellationToken);
* Search by role name & id return searchResult;
* Order by name, created date, creator? (paging)
*/
return ListResult<AuthorityRole>.Failed("Not implemented!");
} }
public async Task AddRoleToUserAsync(AuthorityUser user, AuthorityRole role, CancellationToken? cancellationToken = null) public async Task AddRoleToUserAsync(AuthorityUser user, AuthorityRole role, CancellationToken cancellationToken = default)
{ {
/* /*
- Validate User & Role - Validate User & Role
@ -37,11 +39,11 @@ public partial class AuthorityManager
*/ */
} }
public async Task RemoveRoleFromUserAsync(AuthorityRole role, AuthorityUser user, CancellationToken? cancellationToken = null) public async Task RemoveRoleFromUserAsync(AuthorityRole role, AuthorityUser user, CancellationToken cancellationToken = default)
{ {
} }
public async Task AddRoleToGroupAsync(AuthorityRole role, AuthorityGroup group, CancellationToken? cancellationToken = null) public async Task AddRoleToGroupAsync(AuthorityRole role, AuthorityGroup group, CancellationToken cancellationToken = default)
{ {
} }
@ -50,16 +52,34 @@ public partial class AuthorityManager
/// </summary> /// </summary>
/// <param name="user">The user to get the roles from</param> /// <param name="user">The user to get the roles from</param>
/// <param name="cancellationToken"></param> /// <param name="cancellationToken"></param>
public async Task<ListResult<AuthorityRole>> GetUserRolesAsync(AuthorityUser user, CancellationToken? cancellationToken = null) public async Task<ListResult<AuthorityRole>> GetUserRolesAsync(AuthorityUser user, CancellationToken cancellationToken = default)
{ {
/* var usrValidation = await IsValidUserAsync(user, cancellationToken);
* - Validate user if (!usrValidation.Success)
* - Get user groups (id) {
* - Get roles contained from user return ListResult<AuthorityRole>.Failed("Invalid user");
* - Get roles contained from groups (if any) }
* - Order by (for paging)
*/
List<AuthorityRole> roles = [];
var usrRoles = await GetUserRolesAsync(user, cancellationToken);
if (usrRoles.Success)
{
roles.AddRange(usrRoles.Items);
}
var usrGroups = await GetUserGroupsAsync(user, cancellationToken);
if (usrGroups.Success)
{
var groupRolesResult = await GetGroupRolesAsync(usrGroups.Items.Select(g => g.Id).ToList(), cancellationToken);
if (groupRolesResult.Success)
{
roles.AddRange(groupRolesResult.Items);
}
}
return ListResult<AuthorityRole>.Ok(roles, roles.Count);
}
public async Task<ListResult<AuthorityRole>> GetGroupRolesAsync(List<Guid> groupIds, CancellationToken cancellationToken = default)
{
return ListResult<AuthorityRole>.Failed("Not implemented!"); return ListResult<AuthorityRole>.Failed("Not implemented!");
} }
} }

View File

@ -89,5 +89,9 @@ public partial class AuthorityManager
return deleteResult; return deleteResult;
} }
public async Task<Result> IsValidUserAsync(AuthorityUser user, CancellationToken cancellationToken = default)
{
var usrResult = await userRepository.GetVersionAsync(user, cancellationToken);
return usrResult;
}
} }