jellyfin/MediaBrowser.Controller/Net/AuthenticatedAttribute.cs

77 lines
2.4 KiB
C#
Raw Normal View History

#pragma warning disable CS1591
using System;
2018-12-28 00:27:57 +01:00
using MediaBrowser.Model.Services;
using Microsoft.AspNetCore.Http;
2018-12-28 00:27:57 +01:00
namespace MediaBrowser.Controller.Net
{
public class AuthenticatedAttribute : Attribute, IHasRequestFilter, IAuthenticationAttributes
{
public static IAuthService AuthService { get; set; }
/// <summary>
/// Gets or sets the roles.
/// </summary>
/// <value>The roles.</value>
public string Roles { get; set; }
/// <summary>
/// Gets or sets a value indicating whether [escape parental control].
/// </summary>
/// <value><c>true</c> if [escape parental control]; otherwise, <c>false</c>.</value>
public bool EscapeParentalControl { get; set; }
/// <summary>
/// Gets or sets a value indicating whether [allow before startup wizard].
/// </summary>
/// <value><c>true</c> if [allow before startup wizard]; otherwise, <c>false</c>.</value>
public bool AllowBeforeStartupWizard { get; set; }
public bool AllowLocal { get; set; }
/// <summary>
/// The request filter is executed before the service.
/// </summary>
2020-06-19 12:21:49 +02:00
/// <param name="request">The http request wrapper.</param>
/// <param name="response">The http response wrapper.</param>
/// <param name="requestDto">The request DTO.</param>
public void RequestFilter(IRequest request, HttpResponse response, object requestDto)
2018-12-28 00:27:57 +01:00
{
AuthService.Authenticate(request, this);
}
/// <summary>
/// Order in which Request Filters are executed.
/// &lt;0 Executed before global request filters
/// &gt;0 Executed after global request filters
/// </summary>
/// <value>The priority.</value>
public int Priority => 0;
2018-12-28 00:27:57 +01:00
public string[] GetRoles()
{
return (Roles ?? string.Empty).Split(new[] { ',' }, StringSplitOptions.RemoveEmptyEntries);
2018-12-28 00:27:57 +01:00
}
2020-06-01 20:42:59 +02:00
public bool IgnoreLegacyAuth { get; set; }
2018-12-28 00:27:57 +01:00
public bool AllowLocalOnly { get; set; }
}
public interface IAuthenticationAttributes
{
bool EscapeParentalControl { get; }
2020-06-15 23:43:52 +02:00
2018-12-28 00:27:57 +01:00
bool AllowBeforeStartupWizard { get; }
2020-06-15 23:43:52 +02:00
2018-12-28 00:27:57 +01:00
bool AllowLocal { get; }
2020-06-15 23:43:52 +02:00
2018-12-28 00:27:57 +01:00
bool AllowLocalOnly { get; }
string[] GetRoles();
2020-06-01 20:42:59 +02:00
bool IgnoreLegacyAuth { get; }
2018-12-28 00:27:57 +01:00
}
}