mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 10:32:35 +01:00
39 lines
1.2 KiB
C#
39 lines
1.2 KiB
C#
using Nancy;
|
|
using Nancy.Authentication.Basic;
|
|
using Nancy.Bootstrapper;
|
|
using NzbDrone.Common.Model;
|
|
|
|
namespace NzbDrone.Api.Authentication
|
|
{
|
|
public interface IEnableBasicAuthInNancy
|
|
{
|
|
void Register(IPipelines pipelines);
|
|
}
|
|
|
|
public class EnableBasicAuthInNancy : IEnableBasicAuthInNancy
|
|
{
|
|
private readonly IAuthenticationService _authenticationService;
|
|
|
|
public EnableBasicAuthInNancy(IAuthenticationService authenticationService)
|
|
{
|
|
_authenticationService = authenticationService;
|
|
}
|
|
|
|
public void Register(IPipelines pipelines)
|
|
{
|
|
pipelines.EnableBasicAuthentication(new BasicAuthenticationConfiguration(_authenticationService, "NzbDrone"));
|
|
pipelines.BeforeRequest.AddItemToEndOfPipeline(RequiresAuthentication);
|
|
}
|
|
|
|
private Response RequiresAuthentication(NancyContext context)
|
|
{
|
|
Response response = null;
|
|
if (context.CurrentUser == null && _authenticationService.AuthenticationType != AuthenticationType.Anonymous)
|
|
{
|
|
response = new Response { StatusCode = HttpStatusCode.Unauthorized };
|
|
}
|
|
|
|
return response;
|
|
}
|
|
}
|
|
} |