diff options
| author | Kamen Mladenov <kamen.d.mladenov@protonmail.com> | 2021-04-09 19:51:35 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-09 19:51:35 +0300 |
| commit | 233f38915ba0079079233eff55434ef349c05c45 (patch) | |
| tree | 6c5f69017865bcab87355e910c87339453da1406 /src/DevHive.Services/Services/RoleService.cs | |
| parent | f4a70c6430db923af9fa9958a11c2d6612cb52cc (diff) | |
| parent | a992357efcf1bc1ece81b95ecee5e05a0b73bfdc (diff) | |
| download | DevHive-main.tar DevHive-main.tar.gz DevHive-main.zip | |
Merge pull request #28 from Team-Kaleidoscope/devHEADv0.2mainheroku/main
Second stage: Complete
Diffstat (limited to 'src/DevHive.Services/Services/RoleService.cs')
| -rw-r--r-- | src/DevHive.Services/Services/RoleService.cs | 70 |
1 files changed, 0 insertions, 70 deletions
diff --git a/src/DevHive.Services/Services/RoleService.cs b/src/DevHive.Services/Services/RoleService.cs deleted file mode 100644 index a8b8e17..0000000 --- a/src/DevHive.Services/Services/RoleService.cs +++ /dev/null @@ -1,70 +0,0 @@ -using System; -using System.Threading.Tasks; -using AutoMapper; -using DevHive.Data.Interfaces.Repositories; -using DevHive.Data.Models; -using DevHive.Services.Interfaces; -using DevHive.Services.Models.Identity.Role; -using DevHive.Services.Models.Language; - -namespace DevHive.Services.Services -{ - public class RoleService : IRoleService - { - private readonly IRoleRepository _roleRepository; - private readonly IMapper _roleMapper; - - public RoleService(IRoleRepository roleRepository, IMapper mapper) - { - this._roleRepository = roleRepository; - this._roleMapper = mapper; - } - - public async Task<Guid> CreateRole(CreateRoleServiceModel roleServiceModel) - { - if (await this._roleRepository.DoesNameExist(roleServiceModel.Name)) - throw new ArgumentException("Role already exists!"); - - Role role = this._roleMapper.Map<Role>(roleServiceModel); - bool success = await this._roleRepository.AddAsync(role); - - if (success) - { - Role newRole = await this._roleRepository.GetByNameAsync(roleServiceModel.Name); - return newRole.Id; - } - else - return Guid.Empty; - - } - - public async Task<RoleServiceModel> GetRoleById(Guid id) - { - Role role = await this._roleRepository.GetByIdAsync(id) - ?? throw new ArgumentException("Role does not exist!"); - - return this._roleMapper.Map<RoleServiceModel>(role); - } - - public async Task<bool> UpdateRole(UpdateRoleServiceModel updateRoleServiceModel) - { - if (!await this._roleRepository.DoesRoleExist(updateRoleServiceModel.Id)) - throw new ArgumentException("Role does not exist!"); - - if (await this._roleRepository.DoesNameExist(updateRoleServiceModel.Name)) - throw new ArgumentException("Role name already exists!"); - - Role role = this._roleMapper.Map<Role>(updateRoleServiceModel); - return await this._roleRepository.EditAsync(updateRoleServiceModel.Id, role); - } - - public async Task<bool> DeleteRole(Guid id) - { - if (!await this._roleRepository.DoesRoleExist(id)) - throw new ArgumentException("Role does not exist!"); - - Role role = await this._roleRepository.GetByIdAsync(id); - return await this._roleRepository.DeleteAsync(role); - } - } -} |
