jellyfin/Jellyfin.Server/Extensions/ApiServiceCollectionExtensions.cs

381 lines
18 KiB
C#
Raw Normal View History

2020-04-19 19:24:32 +02:00
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net;
using System.Net.Sockets;
2020-05-08 16:40:37 +02:00
using System.Reflection;
2023-02-08 23:55:26 +01:00
using System.Security.Claims;
2020-11-06 21:00:14 +01:00
using Emby.Server.Implementations;
2019-11-23 19:43:30 +01:00
using Jellyfin.Api.Auth;
using Jellyfin.Api.Auth.AnonymousLanAccessPolicy;
using Jellyfin.Api.Auth.DefaultAuthorizationPolicy;
2023-02-08 23:55:26 +01:00
using Jellyfin.Api.Auth.FirstTimeSetupPolicy;
using Jellyfin.Api.Auth.LocalAccessOrRequiresElevationPolicy;
using Jellyfin.Api.Auth.SyncPlayAccessPolicy;
2023-02-08 23:55:26 +01:00
using Jellyfin.Api.Auth.UserPermissionPolicy;
2019-11-24 19:25:46 +01:00
using Jellyfin.Api.Constants;
2019-11-23 19:43:30 +01:00
using Jellyfin.Api.Controllers;
2023-01-14 04:23:22 +01:00
using Jellyfin.Api.Formatters;
using Jellyfin.Api.ModelBinders;
using Jellyfin.Data.Enums;
using Jellyfin.Extensions.Json;
using Jellyfin.Networking.Configuration;
using Jellyfin.Server.Configuration;
using Jellyfin.Server.Filters;
using MediaBrowser.Common.Net;
using MediaBrowser.Model.Entities;
using MediaBrowser.Model.Session;
2019-11-23 19:43:30 +01:00
using Microsoft.AspNetCore.Authentication;
using Microsoft.AspNetCore.Authorization;
2020-06-17 16:05:30 +02:00
using Microsoft.AspNetCore.Builder;
2020-09-05 17:10:05 +02:00
using Microsoft.AspNetCore.Cors.Infrastructure;
2020-06-17 16:05:30 +02:00
using Microsoft.AspNetCore.HttpOverrides;
2019-11-23 19:43:30 +01:00
using Microsoft.Extensions.DependencyInjection;
2020-11-06 21:00:14 +01:00
using Microsoft.OpenApi.Any;
using Microsoft.OpenApi.Interfaces;
2019-11-23 19:43:30 +01:00
using Microsoft.OpenApi.Models;
2020-05-08 16:40:37 +02:00
using Swashbuckle.AspNetCore.SwaggerGen;
using AuthenticationSchemes = Jellyfin.Api.Constants.AuthenticationSchemes;
2019-11-23 19:43:30 +01:00
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)
{
2023-02-08 23:55:26 +01:00
// The default handler must be first so that it is evaluated first
serviceCollection.AddSingleton<IAuthorizationHandler, DefaultAuthorizationHandler>();
2023-02-08 23:55:26 +01:00
serviceCollection.AddSingleton<IAuthorizationHandler, UserPermissionHandler>();
serviceCollection.AddSingleton<IAuthorizationHandler, FirstTimeSetupHandler>();
serviceCollection.AddSingleton<IAuthorizationHandler, AnonymousLanAccessHandler>();
serviceCollection.AddSingleton<IAuthorizationHandler, SyncPlayAccessHandler>();
2023-02-08 23:55:26 +01:00
2019-11-23 19:43:30 +01:00
return serviceCollection.AddAuthorizationCore(options =>
{
2023-02-08 23:55:26 +01:00
options.DefaultPolicy = new AuthorizationPolicyBuilder()
.AddAuthenticationSchemes(AuthenticationSchemes.CustomAuthentication)
2023-02-09 13:15:58 +01:00
.AddRequirements(new DefaultAuthorizationRequirement())
2023-02-08 23:55:26 +01:00
.Build();
options.AddPolicy(Policies.AnonymousLanAccessPolicy, new AnonymousLanAccessRequirement());
options.AddPolicy(Policies.CollectionManagement, new UserPermissionRequirement(PermissionKind.EnableCollectionManagement));
2023-02-08 23:55:26 +01:00
options.AddPolicy(Policies.Download, new UserPermissionRequirement(PermissionKind.EnableContentDownloading));
2023-02-09 21:06:51 +01:00
options.AddPolicy(Policies.FirstTimeSetupOrDefault, new FirstTimeSetupRequirement(requireAdmin: false));
options.AddPolicy(Policies.FirstTimeSetupOrElevated, new FirstTimeSetupRequirement());
options.AddPolicy(Policies.FirstTimeSetupOrIgnoreParentalControl, new FirstTimeSetupRequirement(false, false));
2023-02-08 23:55:26 +01:00
options.AddPolicy(Policies.IgnoreParentalControl, new DefaultAuthorizationRequirement(validateParentalSchedule: false));
options.AddPolicy(Policies.LiveTvAccess, new UserPermissionRequirement(PermissionKind.EnableLiveTvAccess));
options.AddPolicy(Policies.LiveTvManagement, new UserPermissionRequirement(PermissionKind.EnableLiveTvManagement));
options.AddPolicy(Policies.LocalAccessOrRequiresElevation, new LocalAccessOrRequiresElevationRequirement());
2023-02-08 23:55:26 +01:00
options.AddPolicy(Policies.SyncPlayHasAccess, new SyncPlayAccessRequirement(SyncPlayAccessRequirementType.HasAccess));
options.AddPolicy(Policies.SyncPlayCreateGroup, new SyncPlayAccessRequirement(SyncPlayAccessRequirementType.CreateGroup));
options.AddPolicy(Policies.SyncPlayJoinGroup, new SyncPlayAccessRequirement(SyncPlayAccessRequirementType.JoinGroup));
options.AddPolicy(Policies.SyncPlayIsInGroup, new SyncPlayAccessRequirement(SyncPlayAccessRequirementType.IsInGroup));
options.AddPolicy(
Policies.RequiresElevation,
2023-02-08 23:55:26 +01:00
policy => policy.AddAuthenticationSchemes(AuthenticationSchemes.CustomAuthentication)
.RequireClaim(ClaimTypes.Role, UserRoles.Administrator));
2019-11-23 19:43:30 +01:00
});
}
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="pluginAssemblies">An IEnumerable containing all plugin assemblies with API controllers.</param>
/// <param name="config">The <see cref="NetworkConfiguration"/>.</param>
2019-11-23 20:31:17 +01:00
/// <returns>The MVC builder.</returns>
2021-01-19 11:36:37 +01:00
public static IMvcBuilder AddJellyfinApi(this IServiceCollection serviceCollection, IEnumerable<Assembly> pluginAssemblies, NetworkConfiguration config)
2019-11-23 19:43:30 +01:00
{
2020-08-10 16:12:22 +02:00
IMvcBuilder mvcBuilder = serviceCollection
2021-01-12 21:43:25 +01:00
.AddCors()
.AddTransient<ICorsPolicyProvider, CorsPolicyProvider>()
.Configure<ForwardedHeadersOptions>(options =>
2020-06-17 16:05:30 +02:00
{
// https://github.com/dotnet/aspnetcore/blob/master/src/Middleware/HttpOverrides/src/ForwardedHeadersMiddleware.cs
// Enable debug logging on Microsoft.AspNetCore.HttpOverrides.ForwardedHeadersMiddleware to help investigate issues.
options.ForwardedHeaders = ForwardedHeaders.XForwardedFor | ForwardedHeaders.XForwardedProto | ForwardedHeaders.XForwardedHost;
if (config.KnownProxies.Length == 0)
{
options.KnownNetworks.Clear();
2021-01-12 14:23:10 +01:00
options.KnownProxies.Clear();
}
else
{
2021-01-19 20:29:51 +01:00
AddProxyAddresses(config, config.KnownProxies, options);
}
// Only set forward limit if we have some known proxies or some known networks.
if (options.KnownProxies.Count != 0 || options.KnownNetworks.Count != 0)
{
options.ForwardLimit = null;
}
2020-06-17 16:05:30 +02:00
})
2020-06-01 19:03:08 +02:00
.AddMvc(opts =>
2019-11-23 19:43:30 +01:00
{
2020-08-20 19:17:27 +02:00
// Allow requester to change between camelCase and PascalCase
opts.RespectBrowserAcceptHeader = true;
2020-04-20 02:10:59 +02:00
opts.OutputFormatters.Insert(0, new CamelCaseJsonProfileFormatter());
opts.OutputFormatters.Insert(0, new PascalCaseJsonProfileFormatter());
2020-06-07 00:51:21 +02:00
opts.OutputFormatters.Add(new CssOutputFormatter());
2020-08-15 18:39:24 +02:00
opts.OutputFormatters.Add(new XmlOutputFormatter());
opts.ModelBinderProviders.Insert(0, new NullableEnumModelBinderProvider());
2019-11-23 19:43:30 +01:00
})
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 =>
{
// Update all properties that are set in JsonDefaults
2021-03-09 05:57:38 +01:00
var jsonOptions = JsonDefaults.PascalCaseOptions;
// From JsonDefaults
options.JsonSerializerOptions.ReadCommentHandling = jsonOptions.ReadCommentHandling;
options.JsonSerializerOptions.WriteIndented = jsonOptions.WriteIndented;
2020-08-25 15:33:58 +02:00
options.JsonSerializerOptions.DefaultIgnoreCondition = jsonOptions.DefaultIgnoreCondition;
2020-08-26 16:22:48 +02:00
options.JsonSerializerOptions.NumberHandling = jsonOptions.NumberHandling;
2020-08-23 15:48:12 +02:00
options.JsonSerializerOptions.Converters.Clear();
foreach (var converter in jsonOptions.Converters)
{
options.JsonSerializerOptions.Converters.Add(converter);
}
// From JsonDefaults.PascalCase
options.JsonSerializerOptions.PropertyNamingPolicy = jsonOptions.PropertyNamingPolicy;
2020-08-11 17:04:11 +02:00
});
2020-08-10 16:12:22 +02:00
2020-08-31 17:53:55 +02:00
foreach (Assembly pluginAssembly in pluginAssemblies)
2020-08-10 16:12:22 +02:00
{
2020-08-11 17:04:11 +02:00
mvcBuilder.AddApplicationPart(pluginAssembly);
2020-08-10 16:12:22 +02:00
}
2020-08-11 17:04:11 +02:00
return mvcBuilder.AddControllersAsServices();
2019-11-23 19:43:30 +01:00
}
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 =>
{
var version = typeof(ApplicationHost).Assembly.GetName().Version?.ToString(3) ?? "0.0.1";
2020-11-06 21:00:14 +01:00
c.SwaggerDoc("api-docs", new OpenApiInfo
{
Title = "Jellyfin API",
2021-03-13 01:11:43 +01:00
Version = version,
2020-11-06 21:00:14 +01:00
Extensions = new Dictionary<string, IOpenApiExtension>
{
{
"x-jellyfin-version",
2021-03-13 01:11:43 +01:00
new OpenApiString(version)
2020-11-06 21:00:14 +01:00
}
}
});
c.AddSecurityDefinition(AuthenticationSchemes.CustomAuthentication, new OpenApiSecurityScheme
{
Type = SecuritySchemeType.ApiKey,
In = ParameterLocation.Header,
Name = "Authorization",
Description = "API key header parameter"
});
2020-04-19 19:24:32 +02: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 =>
2020-06-26 01:44:11 +02:00
$"{description.ActionDescriptor.RouteValues["controller"]}_{description.RelativePath}");
2020-05-08 16:40:37 +02:00
// Use method name as operationId
2020-08-03 22:38:51 +02:00
c.CustomOperationIds(
description =>
{
description.TryGetMethodInfo(out MethodInfo methodInfo);
// Attribute name, method name, none.
2021-08-04 14:40:09 +02:00
return description?.ActionDescriptor.AttributeRouteInfo?.Name
2020-08-03 22:38:51 +02:00
?? methodInfo?.Name
?? null;
});
2021-01-24 22:36:36 +01:00
// Allow parameters to properly be nullable.
c.UseAllOfToExtendReferenceSchemas();
c.SupportNonNullableReferenceTypes();
2021-01-24 22:36:36 +01:00
// TODO - remove when all types are supported in System.Text.Json
c.AddSwaggerTypeMappings();
c.OperationFilter<SecurityRequirementsOperationFilter>();
c.OperationFilter<FileResponseFilter>();
2021-02-11 00:12:52 +01:00
c.OperationFilter<FileRequestFilter>();
c.OperationFilter<ParameterObsoleteFilter>();
c.DocumentFilter<AdditionalModelFilter>();
2019-11-23 19:43:30 +01:00
});
}
2023-02-08 23:55:26 +01:00
private static void AddPolicy(this AuthorizationOptions authorizationOptions, string policyName, IAuthorizationRequirement authorizationRequirement)
{
authorizationOptions.AddPolicy(policyName, policy =>
{
policy.AddAuthenticationSchemes(AuthenticationSchemes.CustomAuthentication).AddRequirements(authorizationRequirement);
});
}
2021-01-19 11:36:37 +01:00
/// <summary>
2021-01-19 20:29:51 +01:00
/// Sets up the proxy configuration based on the addresses in <paramref name="allowedProxies"/>.
2021-01-19 11:36:37 +01:00
/// </summary>
/// <param name="config">The <see cref="NetworkConfiguration"/> containing the config settings.</param>
2021-01-19 20:29:51 +01:00
/// <param name="allowedProxies">The string array to parse.</param>
2021-01-19 11:36:37 +01:00
/// <param name="options">The <see cref="ForwardedHeadersOptions"/> instance.</param>
2021-01-19 20:29:51 +01:00
internal static void AddProxyAddresses(NetworkConfiguration config, string[] allowedProxies, ForwardedHeadersOptions options)
2021-01-19 11:36:37 +01:00
{
2021-01-19 20:29:51 +01:00
for (var i = 0; i < allowedProxies.Length; i++)
2021-01-19 11:36:37 +01:00
{
2021-01-19 20:29:51 +01:00
if (IPNetAddress.TryParse(allowedProxies[i], out var addr))
2021-01-19 11:36:37 +01:00
{
AddIpAddress(config, options, addr.Address, addr.PrefixLength);
}
2021-01-19 20:29:51 +01:00
else if (IPHost.TryParse(allowedProxies[i], out var host))
2021-01-19 11:36:37 +01:00
{
foreach (var address in host.GetAddresses())
{
2021-08-04 14:40:09 +02:00
AddIpAddress(config, options, address, address.AddressFamily == AddressFamily.InterNetwork ? 32 : 128);
2021-01-19 11:36:37 +01:00
}
}
}
}
private static void AddIpAddress(NetworkConfiguration config, ForwardedHeadersOptions options, IPAddress addr, int prefixLength)
{
if ((!config.EnableIPV4 && addr.AddressFamily == AddressFamily.InterNetwork) || (!config.EnableIPV6 && addr.AddressFamily == AddressFamily.InterNetworkV6))
{
return;
}
2021-01-19 12:31:40 +01:00
// In order for dual-mode sockets to be used, IP6 has to be enabled in JF and an interface has to have an IP6 address.
2021-01-19 13:50:11 +01:00
if (addr.AddressFamily == AddressFamily.InterNetwork && config.EnableIPV6)
2021-01-19 11:36:37 +01:00
{
// If the server is using dual-mode sockets, IPv4 addresses are supplied in an IPv6 format.
// https://docs.microsoft.com/en-us/aspnet/core/host-and-deploy/proxy-load-balancer?view=aspnetcore-5.0 .
addr = addr.MapToIPv6();
}
if (prefixLength == 32)
{
options.KnownProxies.Add(addr);
}
else
{
options.KnownNetworks.Add(new IPNetwork(addr, prefixLength));
}
}
private static void AddSwaggerTypeMappings(this SwaggerGenOptions options)
{
/*
2020-11-30 16:47:52 +01:00
* TODO remove when System.Text.Json properly supports non-string keys.
* Used in BaseItemDto.ImageBlurHashes
*/
options.MapType<Dictionary<ImageType, string>>(() =>
new OpenApiSchema
{
Type = "object",
2020-11-30 16:47:52 +01:00
AdditionalProperties = new OpenApiSchema
{
Type = "string"
}
});
2020-06-19 15:49:44 +02:00
/*
* Support BlurHash dictionary
*/
options.MapType<Dictionary<ImageType, Dictionary<string, string>>>(() =>
new OpenApiSchema
{
Type = "object",
Properties = typeof(ImageType).GetEnumNames().ToDictionary(
name => name,
2021-08-04 14:40:09 +02:00
_ => new OpenApiSchema
{
2020-11-30 16:47:52 +01:00
Type = "object",
AdditionalProperties = new OpenApiSchema
2020-06-19 15:49:44 +02:00
{
2020-11-30 16:47:52 +01:00
Type = "string"
2020-06-19 15:49:44 +02:00
}
})
});
// Support dictionary with nullable string value.
options.MapType<Dictionary<string, string?>>(() =>
new OpenApiSchema
{
Type = "object",
AdditionalProperties = new OpenApiSchema
{
Type = "string",
Nullable = true
}
});
// Manually describe Flags enum.
options.MapType<TranscodeReason>(() =>
new OpenApiSchema
{
Type = "array",
Items = new OpenApiSchema
{
Reference = new OpenApiReference
{
Id = nameof(TranscodeReason),
Type = ReferenceType.Schema,
}
}
});
// Swashbuckle doesn't use JsonOptions to describe responses, so we need to manually describe it.
options.MapType<Version>(() => new OpenApiSchema
{
Type = "string"
});
}
2019-11-23 19:43:30 +01:00
}
}