aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Web/Controllers/RoleController.cs
blob: 8ea2711508300bc3070fa9acddd09c89524fbcf0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using DevHive.Web.Models.Identity.Role;
using AutoMapper;
using System;
using DevHive.Common.Models.Identity;
using DevHive.Services.Interfaces;

namespace DevHive.Web.Controllers
{
	[ApiController]
	[Route("/api/[controller]")]
	//[Authorize(Roles = "Admin")]
	public class RoleController
	{
		private readonly IRoleService _roleService;
		private readonly IMapper _roleMapper;

		public RoleController(IRoleService roleService, IMapper mapper)
		{
			this._roleService = roleService;
			this._roleMapper = mapper;
		}

		[HttpPost]
		public async Task<IActionResult> Create([FromBody] CreateRoleModel createRoleModel)
		{
			RoleModel roleServiceModel =
				this._roleMapper.Map<RoleModel>(createRoleModel);

			bool result = await this._roleService.CreateRole(roleServiceModel);

			if (!result)
				return new BadRequestObjectResult("Could not create role!");

			return new OkResult();
		}

		[HttpGet]
		public async Task<IActionResult> GetById(Guid id)
		{
			RoleModel roleServiceModel = await this._roleService.GetRoleById(id);
			RoleModel roleWebModel = this._roleMapper.Map<RoleModel>(roleServiceModel);

			return new OkObjectResult(roleWebModel);
		}

		[HttpPut]
		public async Task<IActionResult> Update(Guid id, [FromBody] UpdateRoleModel updateRoleModel)
		{
			RoleModel roleServiceModel =
				this._roleMapper.Map<RoleModel>(updateRoleModel);
			roleServiceModel.Id = id;

			bool result = await this._roleService.UpdateRole(roleServiceModel);

			if (!result)
				return new BadRequestObjectResult("Could not update role!");

			return new OkResult();
		}

		[HttpDelete]
		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();
		}
	}
}