diff --git a/DotBased.AspNet.Authority/Managers/AuthorityGroupManager.cs b/DotBased.AspNet.Authority/Managers/AuthorityGroupManager.cs index a91e65d..517a836 100755 --- a/DotBased.AspNet.Authority/Managers/AuthorityGroupManager.cs +++ b/DotBased.AspNet.Authority/Managers/AuthorityGroupManager.cs @@ -1,10 +1,11 @@ +using DotBased.AspNet.Authority.Models.Authority; + namespace DotBased.AspNet.Authority.Managers; public partial class AuthorityManager { - /* - * - Validate User & Group - * - Check if user is already in group (if already in group return) - * - Add to UsersGroups table - */ + public async Task> GetUserGroupsAsync(AuthorityUser user, CancellationToken cancellationToken = default) + { + return ListResult.Failed("Not implemented!"); + } } \ No newline at end of file diff --git a/DotBased.AspNet.Authority/Managers/AuthorityRoleManager.cs b/DotBased.AspNet.Authority/Managers/AuthorityRoleManager.cs index 2b62e98..e63059b 100755 --- a/DotBased.AspNet.Authority/Managers/AuthorityRoleManager.cs +++ b/DotBased.AspNet.Authority/Managers/AuthorityRoleManager.cs @@ -1,34 +1,36 @@ +using DotBased.AspNet.Authority.Models; using DotBased.AspNet.Authority.Models.Authority; namespace DotBased.AspNet.Authority.Managers; public partial class AuthorityManager { - public async Task> CreateRoleAsync(AuthorityRole role, CancellationToken? cancellationToken = null) + public async Task> CreateRoleAsync(AuthorityRole role, CancellationToken cancellationToken = default) { - return Result.Failed("Not implemented!"); + role.Version = GenerateVersion(); + var createResult = await roleRepository.CreateRoleAsync(role, cancellationToken); + return AuthorityResult.FromResult(createResult); } - public async Task DeleteRoleAsync(AuthorityRole role, CancellationToken? cancellationToken = null) + public async Task DeleteRoleAsync(AuthorityRole role, CancellationToken cancellationToken = default) { - return Result.Failed("Not implemented!"); + var result = await roleRepository.DeleteRoleAsync(role, cancellationToken); + return result; } - public async Task> UpdateRoleAsync(AuthorityRole role, CancellationToken? cancellationToken = null) + public async Task> UpdateRoleAsync(AuthorityRole role, CancellationToken cancellationToken = default) { - return Result.Failed("Not implemented!"); + var result = await roleRepository.UpdateRoleAsync(role, cancellationToken); + return result; } - public async Task> GetRolesAsync(int limit = 20, int offset = 0, string search = "", CancellationToken? cancellationToken = null) + public async Task> GetRolesAsync(int limit = 20, int offset = 0, string search = "", CancellationToken cancellationToken = default) { - /* - * Search by role name & id - * Order by name, created date, creator? (paging) - */ - return ListResult.Failed("Not implemented!"); + var searchResult = await roleRepository.GetRolesAsync(limit, offset, search, cancellationToken); + return searchResult; } - 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 @@ -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 /// /// The user to get the roles from /// - public async Task> GetUserRolesAsync(AuthorityUser user, CancellationToken? cancellationToken = null) + public async Task> GetUserRolesAsync(AuthorityUser user, CancellationToken cancellationToken = default) { - /* - * - Validate user - * - Get user groups (id) - * - Get roles contained from user - * - Get roles contained from groups (if any) - * - Order by (for paging) - */ + var usrValidation = await IsValidUserAsync(user, cancellationToken); + if (!usrValidation.Success) + { + return ListResult.Failed("Invalid user"); + } + List 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.Ok(roles, roles.Count); + } + + public async Task> GetGroupRolesAsync(List groupIds, CancellationToken cancellationToken = default) + { return ListResult.Failed("Not implemented!"); } } \ No newline at end of file diff --git a/DotBased.AspNet.Authority/Managers/AuthorityUserManager.cs b/DotBased.AspNet.Authority/Managers/AuthorityUserManager.cs index dd4bf6b..cfb7d9c 100755 --- a/DotBased.AspNet.Authority/Managers/AuthorityUserManager.cs +++ b/DotBased.AspNet.Authority/Managers/AuthorityUserManager.cs @@ -88,6 +88,10 @@ public partial class AuthorityManager var deleteResult = await UserRepository.DeleteUserAsync(model, cancellationToken); return deleteResult; } - - + + public async Task IsValidUserAsync(AuthorityUser user, CancellationToken cancellationToken = default) + { + var usrResult = await userRepository.GetVersionAsync(user, cancellationToken); + return usrResult; + } } \ No newline at end of file