jellyfin/Emby.Server.Implementations/HttpServer/Security/AuthService.cs

36 lines
987 B
C#
Raw Normal View History

2019-11-01 10:38:54 -07:00
#pragma warning disable CS1591
2020-05-12 19:10:35 -07:00
using Jellyfin.Data.Enums;
2014-07-01 22:16:59 -07:00
using MediaBrowser.Controller.Net;
using Microsoft.AspNetCore.Http;
2016-11-03 18:18:51 -07:00
namespace Emby.Server.Implementations.HttpServer.Security
{
public class AuthService : IAuthService
{
private readonly IAuthorizationContext _authorizationContext;
2014-07-07 18:41:03 -07:00
public AuthService(
2020-09-02 03:22:14 -07:00
IAuthorizationContext authorizationContext)
2014-07-01 22:16:59 -07:00
{
_authorizationContext = authorizationContext;
}
public AuthorizationInfo Authenticate(HttpRequest request)
{
var auth = _authorizationContext.GetAuthorizationInfo(request);
2020-10-15 07:02:59 -07:00
if (auth == null)
{
throw new SecurityException("Unauthenticated request.");
}
2020-10-14 16:58:33 -07:00
if (auth.User?.HasPermission(PermissionKind.IsDisabled) ?? false)
{
throw new SecurityException("User account has been disabled.");
}
return auth;
}
}
}