-
Notifications
You must be signed in to change notification settings - Fork 98
/
Copy pathUserController.cs
81 lines (72 loc) · 2.34 KB
/
UserController.cs
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
75
76
77
78
79
80
81
using Blazorcrud.Server.Authorization;
using Blazorcrud.Server.Models;
using Blazorcrud.Shared.Models;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Options;
namespace Blazorcrud.Server.Controllers
{
[Authorize]
[ApiController]
[Route("api/[controller]")]
public class UserController : ControllerBase
{
private readonly IUserRepository _userRepository;
private readonly AppSettings _appSettings;
public UserController(IUserRepository userRepository, IOptions<AppSettings> appSettings)
{
_userRepository = userRepository;
_appSettings = appSettings.Value;
}
/// <summary>
/// Authenticates a user and returns a JWT token and user details
/// </summary>
[AllowAnonymous]
[HttpPost("authenticate")]
public ActionResult Authenticate(AuthenticateRequest request)
{
return Ok(_userRepository.Authenticate(request));
}
/// <summary>
/// Returns a list of paginated users with a default page size of 5.
/// </summary>
[AllowAnonymous]
[HttpGet]
public ActionResult GetUsers([FromQuery] string? name, int page)
{
return Ok(_userRepository.GetUsers(name, page));
}
/// <summary>
/// Gets a specific user by Id.
/// </summary>
[AllowAnonymous]
[HttpGet("{id}")]
public async Task<ActionResult> GetUser(int id)
{
return Ok(await _userRepository.GetUser(id));
}
/// <summary>
/// Creates a user and hashes password.
/// </summary>
[HttpPost]
public async Task<ActionResult> AddUser(User user)
{
return Ok(await _userRepository.AddUser(user));
}
/// <summary>
/// Updates a user with a specific Id, hashing password if updated.
/// </summary>
[HttpPut]
public async Task<ActionResult> UpdateUser(User user)
{
return Ok(await _userRepository.UpdateUser(user));
}
/// <summary>
/// Deletes a user with a specific Id.
/// </summary>
[HttpDelete("{id}")]
public async Task<ActionResult> DeleteUser(int id)
{
return Ok(await _userRepository.DeleteUser(id));
}
}
}