jellyfin/Jellyfin.Server/Extensions/ApiServiceCollectionExtensions.cs

95 lines
4.1 KiB
C#
Raw Normal View History

using Jellyfin.Api;
2019-11-23 19:43:30 +01:00
using Jellyfin.Api.Auth;
using Jellyfin.Api.Auth.FirstTimeSetupOrElevatedPolicy;
using Jellyfin.Api.Auth.RequiresElevationPolicy;
2019-11-24 19:25:46 +01:00
using Jellyfin.Api.Constants;
2019-11-23 19:43:30 +01:00
using Jellyfin.Api.Controllers;
using Microsoft.AspNetCore.Authentication;
using Microsoft.AspNetCore.Authorization;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.OpenApi.Models;
namespace Jellyfin.Server.Extensions
2019-11-23 19:43:30 +01:00
{
2019-11-23 20:31:17 +01:00
/// <summary>
/// API specific extensions for the service collection.
/// </summary>
2019-11-23 19:43:30 +01:00
public static class ApiServiceCollectionExtensions
{
2019-11-23 20:31:17 +01:00
/// <summary>
/// Adds jellyfin API authorization policies to the DI container.
/// </summary>
/// <param name="serviceCollection">The service collection.</param>
/// <returns>The updated service collection.</returns>
2019-11-23 19:43:30 +01:00
public static IServiceCollection AddJellyfinApiAuthorization(this IServiceCollection serviceCollection)
{
serviceCollection.AddSingleton<IAuthorizationHandler, FirstTimeSetupOrElevatedHandler>();
serviceCollection.AddSingleton<IAuthorizationHandler, RequiresElevationHandler>();
return serviceCollection.AddAuthorizationCore(options =>
{
options.AddPolicy(
2019-11-24 19:25:46 +01:00
Policies.RequiresElevation,
2019-11-23 19:43:30 +01:00
policy =>
{
2019-11-24 19:25:46 +01:00
policy.AddAuthenticationSchemes(AuthenticationSchemes.CustomAuthentication);
2019-11-23 19:43:30 +01:00
policy.AddRequirements(new RequiresElevationRequirement());
});
options.AddPolicy(
2019-11-24 19:25:46 +01:00
Policies.FirstTimeSetupOrElevated,
2019-11-23 19:43:30 +01:00
policy =>
{
2019-11-24 19:25:46 +01:00
policy.AddAuthenticationSchemes(AuthenticationSchemes.CustomAuthentication);
2019-11-23 19:43:30 +01:00
policy.AddRequirements(new FirstTimeSetupOrElevatedRequirement());
});
});
}
2019-11-23 20:31:17 +01:00
/// <summary>
/// Adds custom legacy authentication to the service collection.
/// </summary>
/// <param name="serviceCollection">The service collection.</param>
/// <returns>The updated service collection.</returns>
2019-11-23 19:43:30 +01:00
public static AuthenticationBuilder AddCustomAuthentication(this IServiceCollection serviceCollection)
{
2019-11-24 19:25:46 +01:00
return serviceCollection.AddAuthentication(AuthenticationSchemes.CustomAuthentication)
.AddScheme<AuthenticationSchemeOptions, CustomAuthenticationHandler>(AuthenticationSchemes.CustomAuthentication, null);
2019-11-23 19:43:30 +01:00
}
2019-11-23 20:31:17 +01:00
/// <summary>
/// Extension method for adding the jellyfin API to the service collection.
/// </summary>
/// <param name="serviceCollection">The service collection.</param>
/// <param name="baseUrl">The base url for the API.</param>
/// <returns>The MVC builder.</returns>
2019-11-23 19:43:30 +01:00
public static IMvcBuilder AddJellyfinApi(this IServiceCollection serviceCollection, string baseUrl)
{
return serviceCollection.AddMvc(opts =>
{
opts.UseGeneralRoutePrefix(baseUrl);
})
2019-11-23 20:31:17 +01:00
2019-11-23 19:43:30 +01:00
// Clear app parts to avoid other assemblies being picked up
.ConfigureApplicationPartManager(a => a.ApplicationParts.Clear())
.AddApplicationPart(typeof(StartupController).Assembly)
.AddJsonOptions(options =>
{
options.JsonSerializerOptions.PropertyNamingPolicy = null;
})
2019-11-23 19:43:30 +01:00
.AddControllersAsServices();
}
2019-11-23 20:31:17 +01:00
/// <summary>
/// Adds Swagger to the service collection.
/// </summary>
/// <param name="serviceCollection">The service collection.</param>
/// <returns>The updated service collection.</returns>
2019-11-23 19:43:30 +01:00
public static IServiceCollection AddJellyfinApiSwagger(this IServiceCollection serviceCollection)
{
return serviceCollection.AddSwaggerGen(c =>
{
c.SwaggerDoc("v1", new OpenApiInfo { Title = "Jellyfin API", Version = "v1" });
});
}
}
}