aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Web/Controllers/RoleController.cs
diff options
context:
space:
mode:
authorKamen Mladenov <kamen.d.mladenov@protonmail.com>2021-04-09 19:51:35 +0300
committerGitHub <noreply@github.com>2021-04-09 19:51:35 +0300
commit233f38915ba0079079233eff55434ef349c05c45 (patch)
tree6c5f69017865bcab87355e910c87339453da1406 /src/DevHive.Web/Controllers/RoleController.cs
parentf4a70c6430db923af9fa9958a11c2d6612cb52cc (diff)
parenta992357efcf1bc1ece81b95ecee5e05a0b73bfdc (diff)
downloadDevHive-233f38915ba0079079233eff55434ef349c05c45.tar
DevHive-233f38915ba0079079233eff55434ef349c05c45.tar.gz
DevHive-233f38915ba0079079233eff55434ef349c05c45.zip
Merge pull request #28 from Team-Kaleidoscope/devHEADv0.2mainheroku/main
Second stage: Complete
Diffstat (limited to 'src/DevHive.Web/Controllers/RoleController.cs')
-rw-r--r--src/DevHive.Web/Controllers/RoleController.cs77
1 files changed, 0 insertions, 77 deletions
diff --git a/src/DevHive.Web/Controllers/RoleController.cs b/src/DevHive.Web/Controllers/RoleController.cs
deleted file mode 100644
index 0d2a2eb..0000000
--- a/src/DevHive.Web/Controllers/RoleController.cs
+++ /dev/null
@@ -1,77 +0,0 @@
-using System.Threading.Tasks;
-using Microsoft.AspNetCore.Mvc;
-using DevHive.Web.Models.Identity.Role;
-using AutoMapper;
-using System;
-using DevHive.Services.Interfaces;
-using DevHive.Services.Models.Identity.Role;
-using Microsoft.AspNetCore.Authorization;
-
-namespace DevHive.Web.Controllers
-{
- [ApiController]
- [Route("/api/[controller]")]
- public class RoleController
- {
- private readonly IRoleService _roleService;
- private readonly IMapper _roleMapper;
-
- public RoleController(IRoleService roleService, IMapper mapper)
- {
- this._roleService = roleService;
- this._roleMapper = mapper;
- }
-
- [HttpPost]
- [Authorize(Roles = "Admin")]
- public async Task<IActionResult> Create([FromBody] CreateRoleWebModel createRoleWebModel)
- {
- CreateRoleServiceModel roleServiceModel =
- this._roleMapper.Map<CreateRoleServiceModel>(createRoleWebModel);
-
- Guid id = await this._roleService.CreateRole(roleServiceModel);
-
- return id == Guid.Empty ?
- new BadRequestObjectResult($"Could not create role {createRoleWebModel.Name}") :
- new OkObjectResult(new { Id = id });
- }
-
- [HttpGet]
- [Authorize(Roles = "User,Admin")]
- public async Task<IActionResult> GetById(Guid id)
- {
- RoleServiceModel roleServiceModel = await this._roleService.GetRoleById(id);
- RoleWebModel roleWebModel = this._roleMapper.Map<RoleWebModel>(roleServiceModel);
-
- return new OkObjectResult(roleWebModel);
- }
-
- [HttpPut]
- [Authorize(Roles = "Admin")]
- public async Task<IActionResult> Update(Guid id, [FromBody] UpdateRoleWebModel updateRoleWebModel)
- {
- UpdateRoleServiceModel updateRoleServiceModel =
- this._roleMapper.Map<UpdateRoleServiceModel>(updateRoleWebModel);
- updateRoleServiceModel.Id = id;
-
- bool result = await this._roleService.UpdateRole(updateRoleServiceModel);
-
- if (!result)
- return new BadRequestObjectResult("Could not update role!");
-
- return new OkResult();
- }
-
- [HttpDelete]
- [Authorize(Roles = "Admin")]
- public async Task<IActionResult> Delete(Guid id)
- {
- bool result = await this._roleService.DeleteRole(id);
-
- if (!result)
- return new BadRequestObjectResult("Could not delete role!");
-
- return new OkResult();
- }
- }
-}