jellyfin/Jellyfin.Server/Extensions/ApiServiceCollectionExtensi...

125 lines
5.4 KiB
C#
Raw Normal View History

2020-04-19 13:24:32 -04:00
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
2020-05-08 10:40:37 -04:00
using System.Reflection;
2020-04-19 13:24:32 -04:00
using System.Text.Json.Serialization;
using Jellyfin.Api;
2019-11-23 13:43:30 -05:00
using Jellyfin.Api.Auth;
using Jellyfin.Api.Auth.FirstTimeSetupOrElevatedPolicy;
using Jellyfin.Api.Auth.RequiresElevationPolicy;
2019-11-24 13:25:46 -05:00
using Jellyfin.Api.Constants;
2019-11-23 13:43:30 -05:00
using Jellyfin.Api.Controllers;
2020-04-19 20:10:59 -04:00
using Jellyfin.Server.Formatters;
2019-11-23 13:43:30 -05:00
using Microsoft.AspNetCore.Authentication;
using Microsoft.AspNetCore.Authorization;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.OpenApi.Models;
2020-05-08 10:40:37 -04:00
using Swashbuckle.AspNetCore.SwaggerGen;
2019-11-23 13:43:30 -05:00
namespace Jellyfin.Server.Extensions
2019-11-23 13:43:30 -05:00
{
2019-11-23 14:31:17 -05:00
/// <summary>
/// API specific extensions for the service collection.
/// </summary>
2019-11-23 13:43:30 -05:00
public static class ApiServiceCollectionExtensions
{
2019-11-23 14:31:17 -05: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 13:43:30 -05: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 13:25:46 -05:00
Policies.RequiresElevation,
2019-11-23 13:43:30 -05:00
policy =>
{
2019-11-24 13:25:46 -05:00
policy.AddAuthenticationSchemes(AuthenticationSchemes.CustomAuthentication);
2019-11-23 13:43:30 -05:00
policy.AddRequirements(new RequiresElevationRequirement());
});
options.AddPolicy(
2019-11-24 13:25:46 -05:00
Policies.FirstTimeSetupOrElevated,
2019-11-23 13:43:30 -05:00
policy =>
{
2019-11-24 13:25:46 -05:00
policy.AddAuthenticationSchemes(AuthenticationSchemes.CustomAuthentication);
2019-11-23 13:43:30 -05:00
policy.AddRequirements(new FirstTimeSetupOrElevatedRequirement());
});
});
}
2019-11-23 14:31:17 -05: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 13:43:30 -05:00
public static AuthenticationBuilder AddCustomAuthentication(this IServiceCollection serviceCollection)
{
2019-11-24 13:25:46 -05:00
return serviceCollection.AddAuthentication(AuthenticationSchemes.CustomAuthentication)
.AddScheme<AuthenticationSchemeOptions, CustomAuthenticationHandler>(AuthenticationSchemes.CustomAuthentication, null);
2019-11-23 13:43:30 -05:00
}
2019-11-23 14:31:17 -05: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 13:43:30 -05:00
public static IMvcBuilder AddJellyfinApi(this IServiceCollection serviceCollection, string baseUrl)
{
return serviceCollection.AddMvc(opts =>
{
opts.UseGeneralRoutePrefix(baseUrl);
2020-04-19 20:10:59 -04:00
opts.OutputFormatters.Insert(0, new CamelCaseJsonProfileFormatter());
opts.OutputFormatters.Insert(0, new PascalCaseJsonProfileFormatter());
2019-11-23 13:43:30 -05:00
})
2019-11-23 14:31:17 -05:00
2019-11-23 13:43:30 -05:00
// Clear app parts to avoid other assemblies being picked up
.ConfigureApplicationPartManager(a => a.ApplicationParts.Clear())
.AddApplicationPart(typeof(StartupController).Assembly)
.AddJsonOptions(options =>
{
2020-04-15 19:02:43 -04:00
// Setting the naming policy to null leaves the property names as-is when serializing objects to JSON.
options.JsonSerializerOptions.PropertyNamingPolicy = null;
})
2019-11-23 13:43:30 -05:00
.AddControllersAsServices();
}
2019-11-23 14:31:17 -05: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 13:43:30 -05:00
public static IServiceCollection AddJellyfinApiSwagger(this IServiceCollection serviceCollection)
{
return serviceCollection.AddSwaggerGen(c =>
{
2020-04-29 10:04:05 -04:00
c.SwaggerDoc("api-docs", new OpenApiInfo { Title = "Jellyfin API" });
2020-04-19 13:24:32 -04:00
// Add all xml doc files to swagger generator.
var xmlFiles = Directory.GetFiles(
AppContext.BaseDirectory,
"*.xml",
SearchOption.TopDirectoryOnly);
foreach (var xmlFile in xmlFiles)
{
c.IncludeXmlComments(xmlFile);
}
// Order actions by route path, then by http method.
c.OrderActionsBy(description =>
$"{description.ActionDescriptor.RouteValues["controller"]}_{description.HttpMethod}");
2020-05-08 10:40:37 -04:00
// Use method name as operationId
c.CustomOperationIds(description =>
description.TryGetMethodInfo(out MethodInfo methodInfo) ? methodInfo.Name : null);
2019-11-23 13:43:30 -05:00
});
}
}
}