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

44 lines
1.2 KiB
C#
Raw Normal View History

2019-11-01 10:38:54 -07:00
#pragma warning disable CS1591
using System;
2020-05-12 19:10:35 -07:00
using Jellyfin.Data.Enums;
using MediaBrowser.Controller.Authentication;
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);
if (!auth.HasToken)
{
throw new AuthenticationException("Request does not contain a token.");
}
if (!auth.IsAuthenticated)
2020-10-15 07:02:59 -07:00
{
throw new SecurityException("Invalid token.");
2020-10-15 07:02:59 -07:00
}
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;
}
}
}