-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUserJwtController.cs
77 lines (57 loc) · 2.36 KB
/
UserJwtController.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
using Common.UI.Jwt;
using Entities;
using Microsoft.AspNetCore.Identity;
using Microsoft.AspNetCore.Mvc;
using Microsoft.IdentityModel.Tokens;
using Models.AccessJwt;
using System.IdentityModel.Tokens.Jwt;
using System.Security.Claims;
using System.Text;
namespace API.Controller.Users;
[Route("api/[controller]")]
[ApiController]
public class UserJwtController : ControllerBase
{
private readonly UserManager<ApplicationUser> _userManager;
private readonly IConfiguration _configuration;
public UserJwtController(UserManager<ApplicationUser> userManager, IConfiguration configuration)
{
_userManager = userManager;
_configuration = configuration;
}
[HttpPost]
[Route("login")]
public async Task<IActionResult> Login([FromBody] UserLogin model)
{
var user = await _userManager.FindByNameAsync(model.Username);
if (user == null) return Unauthorized();
var check = await _userManager.CheckPasswordAsync(user, model.Password);
if (!check) return Unauthorized();
var userRoles = await _userManager.GetRolesAsync(user);
var _listClaim = HelperJwt.GetClaim(userRoles, user.UserName, user.Id.ToString());
var token = HelperJwt.GetToken(_listClaim, _configuration);
return Ok(new { token = new JwtSecurityTokenHandler().WriteToken(token), expiration = token.ValidTo });
}
[HttpPost]
[Route("register")]
public async Task<IActionResult> Register([FromBody] UserRegistration model)
{
if (!ModelState.IsValid)
return StatusCode(StatusCodes.Status100Continue, "Not Valid");
var userExists = await _userManager.FindByNameAsync(model.Username);
if (userExists != null) return StatusCode(StatusCodes.Status500InternalServerError, "username exists");
ApplicationUser user = new()
{
Email = model.Email,
SecurityStamp = Guid.NewGuid().ToString(),
UserName = model.Username,
FirstName = model.FirstName,
LastName = model.LastName,
Title = model.Title,
BirthDate = model.BirthDate,
};
var result = await _userManager.CreateAsync(user, model.Password);
if (!result.Succeeded) return StatusCode(StatusCodes.Status500InternalServerError, "Failed to create user");
return Ok("created successfully");
}
}