-
Notifications
You must be signed in to change notification settings - Fork 2
/
TokenController.cs
47 lines (41 loc) · 1.66 KB
/
TokenController.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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Security.Claims;
using System.Threading.Tasks;
using JwtTokenDemo.Model.Requests;
using Microsoft.AspNetCore.Authentication.JwtBearer;
using Microsoft.AspNetCore.Mvc;
namespace JwtTokenDemo.Controllers
{
[Route("api/[controller]")]
public class TokenController : Controller
{
// POST api/Token
[HttpPost]
public IActionResult GetToken([FromBody] TokenRequest tokenRequest)
{
if(!ModelState.IsValid) {
return BadRequest();
}
if (!VerifyCredentials(tokenRequest.Username, tokenRequest.Password)) {
return Unauthorized();
}
//L'utente ha fornito credenziali valide
//creiamo per lui una ClaimsIdentity
var identity = new ClaimsIdentity(JwtBearerDefaults.AuthenticationScheme);
//Aggiungiamo uno o più claim relativi all'utente loggato
identity.AddClaim(new Claim(ClaimTypes.Name, tokenRequest.Username));
//Incapsuliamo l'identità in una ClaimsPrincipal e associamola alla richiesta corrente
HttpContext.User = new ClaimsPrincipal(identity);
//Non restituiamo nulla. Il token verrà prodotto dal JwtTokenMiddleware
return NoContent();
}
private bool VerifyCredentials(string username, string password) {
//Vediamo se le credenziali fornite sono valide
//TODO: Modificare questa implementazione, che è puramente dimostrativa
return username == "Admin" && password == "Password";
}
}
}