1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-20 00:11:46 +02:00
Radarr/NzbDrone.Api/Authentication/AuthenticationService.cs

47 lines
1.3 KiB
C#
Raw Normal View History

2013-05-22 07:55:53 +02:00
using Nancy.Authentication.Basic;
2013-05-22 02:58:57 +02:00
using Nancy.Security;
using NzbDrone.Common;
2013-05-22 07:55:53 +02:00
using NzbDrone.Common.Model;
using NzbDrone.Core.Configuration;
2013-05-22 02:58:57 +02:00
namespace NzbDrone.Api.Authentication
{
public interface IAuthenticationService : IUserValidator
{
AuthenticationType AuthenticationType { get; }
}
public class AuthenticationService : IAuthenticationService
2013-05-22 02:58:57 +02:00
{
private readonly IConfigFileProvider _configFileProvider;
private static readonly NzbDroneUser AnonymousUser = new NzbDroneUser { UserName = "Anonymous" };
2013-05-22 02:58:57 +02:00
public AuthenticationService(IConfigFileProvider configFileProvider)
2013-05-22 02:58:57 +02:00
{
_configFileProvider = configFileProvider;
}
public AuthenticationType AuthenticationType
{
get { return _configFileProvider.AuthenticationType; }
}
2013-05-22 02:58:57 +02:00
public IUserIdentity Validate(string username, string password)
{
if (AuthenticationType == AuthenticationType.Anonymous)
2013-05-22 07:55:53 +02:00
{
return AnonymousUser;
2013-05-22 07:55:53 +02:00
}
2013-05-22 02:58:57 +02:00
if (_configFileProvider.BasicAuthUsername.Equals(username) &&
_configFileProvider.BasicAuthPassword.Equals(password))
{
2013-05-22 07:55:53 +02:00
return new NzbDroneUser { UserName = username };
2013-05-22 02:58:57 +02:00
}
return null;
}
}
}