mirror of
https://github.com/Radarr/Radarr.git
synced 2026-03-28 18:05:41 -04:00
(cherry picked from commit 490f6e2e6aa3f220cc98f257a3ca3b2bea48fb80) (cherry picked from commit 8f3f90d4078d9d072d8ad4ccc3be35963b7435d6) (cherry picked from commit 2b0da546c9dae40fbc1b2654387be80a17c1848f)
59 lines
1.9 KiB
C#
59 lines
1.9 KiB
C#
using System.Collections.Generic;
|
|
using System.Security.Claims;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Authentication;
|
|
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using NzbDrone.Core.Authentication;
|
|
using NzbDrone.Core.Configuration;
|
|
|
|
namespace Radarr.Http.Authentication
|
|
{
|
|
[AllowAnonymous]
|
|
[ApiController]
|
|
public class AuthenticationController : Controller
|
|
{
|
|
private readonly IAuthenticationService _authService;
|
|
|
|
public AuthenticationController(IAuthenticationService authService)
|
|
{
|
|
_authService = authService;
|
|
}
|
|
|
|
[HttpPost("login")]
|
|
public async Task<IActionResult> Login([FromForm] LoginResource resource, [FromQuery] string returnUrl = null)
|
|
{
|
|
var user = _authService.Login(HttpContext.Request, resource.Username, resource.Password);
|
|
|
|
if (user == null)
|
|
{
|
|
return Redirect($"~/login?returnUrl={returnUrl}&loginFailed=true");
|
|
}
|
|
|
|
var claims = new List<Claim>
|
|
{
|
|
new Claim("user", user.Username),
|
|
new Claim("identifier", user.Identifier.ToString()),
|
|
new Claim("AuthType", AuthenticationType.Forms.ToString())
|
|
};
|
|
|
|
var authProperties = new AuthenticationProperties
|
|
{
|
|
IsPersistent = resource.RememberMe == "on"
|
|
};
|
|
|
|
await HttpContext.SignInAsync(AuthenticationType.Forms.ToString(), new ClaimsPrincipal(new ClaimsIdentity(claims, "Cookies", "user", "identifier")), authProperties);
|
|
|
|
return Redirect("/");
|
|
}
|
|
|
|
[HttpGet("logout")]
|
|
public async Task<IActionResult> Logout()
|
|
{
|
|
_authService.Logout(HttpContext);
|
|
await HttpContext.SignOutAsync(AuthenticationType.Forms.ToString());
|
|
return Redirect("/");
|
|
}
|
|
}
|
|
}
|