2020-07-09 02:58:04 +03:00
|
|
|
|
using Microsoft.AspNetCore.Authentication;
|
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
|
using Microsoft.Extensions.Options;
|
|
|
|
|
using NetworkResurrector.Application.Services;
|
|
|
|
|
using NetworkResurrector.Domain.Entities;
|
|
|
|
|
using System.Net.Http.Headers;
|
|
|
|
|
using System.Security.Claims;
|
|
|
|
|
using System.Text.Encodings.Web;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace NetworkResurrector.Api.Authentication
|
|
|
|
|
{
|
|
|
|
|
public class BasicAuthenticationHandler : AuthenticationHandler<AuthenticationSchemeOptions>
|
|
|
|
|
{
|
|
|
|
|
private readonly IUserService _userService;
|
|
|
|
|
|
|
|
|
|
public BasicAuthenticationHandler(IOptionsMonitor<AuthenticationSchemeOptions> options, ILoggerFactory logger, UrlEncoder encoder, ISystemClock clock, IUserService userService)
|
|
|
|
|
: base(options, logger, encoder, clock)
|
|
|
|
|
{
|
|
|
|
|
_userService = userService;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override async Task<AuthenticateResult> HandleAuthenticateAsync()
|
|
|
|
|
{
|
|
|
|
|
if (!Request.Headers.ContainsKey("Authorization"))
|
|
|
|
|
return AuthenticateResult.Fail("Missing Authorization Header");
|
|
|
|
|
|
|
|
|
|
User user;
|
|
|
|
|
try
|
|
|
|
|
{
|
2020-07-10 00:29:39 +03:00
|
|
|
|
var authorizationHeader = AuthenticationHeaderValue.Parse(Request.Headers["Authorization"]);
|
|
|
|
|
var token = authorizationHeader.Parameter;
|
|
|
|
|
user = await _userService.Authenticate(token);
|
2020-07-09 02:58:04 +03:00
|
|
|
|
}
|
|
|
|
|
catch
|
|
|
|
|
{
|
|
|
|
|
return AuthenticateResult.Fail("Invalid Authorization Header");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (user == null)
|
|
|
|
|
return AuthenticateResult.Fail("Invalid Username or Password");
|
|
|
|
|
|
|
|
|
|
var claims = new[] {
|
2020-07-10 00:29:39 +03:00
|
|
|
|
new Claim(ClaimTypes.NameIdentifier, user.UserId.ToString()),
|
2020-07-09 02:58:04 +03:00
|
|
|
|
new Claim(ClaimTypes.Name, user.UserName),
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
var identity = new ClaimsIdentity(claims, Scheme.Name);
|
|
|
|
|
var principal = new ClaimsPrincipal(identity);
|
|
|
|
|
var ticket = new AuthenticationTicket(principal, Scheme.Name);
|
|
|
|
|
|
|
|
|
|
return AuthenticateResult.Success(ticket);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|