| | 1 | | using System; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using System.Linq; |
| | 4 | | using System.Reflection; |
| | 5 | | using Jellyfin.Data.Attributes; |
| | 6 | | using Microsoft.OpenApi.Any; |
| | 7 | | using Microsoft.OpenApi.Models; |
| | 8 | | using Swashbuckle.AspNetCore.SwaggerGen; |
| | 9 | |
|
| | 10 | | namespace Jellyfin.Server.Filters; |
| | 11 | |
|
| | 12 | | /// <summary> |
| | 13 | | /// Filter to remove ignored enum values. |
| | 14 | | /// </summary> |
| | 15 | | public class IgnoreEnumSchemaFilter : ISchemaFilter |
| | 16 | | { |
| | 17 | | /// <inheritdoc /> |
| | 18 | | public void Apply(OpenApiSchema schema, SchemaFilterContext context) |
| | 19 | | { |
| 5022 | 20 | | if (context.Type.IsEnum || (Nullable.GetUnderlyingType(context.Type)?.IsEnum ?? false)) |
| | 21 | | { |
| 346 | 22 | | var type = context.Type.IsEnum ? context.Type : Nullable.GetUnderlyingType(context.Type); |
| 346 | 23 | | if (type is null) |
| | 24 | | { |
| 0 | 25 | | return; |
| | 26 | | } |
| | 27 | |
|
| 346 | 28 | | var enumOpenApiStrings = new List<IOpenApiAny>(); |
| | 29 | |
|
| 7912 | 30 | | foreach (var enumName in Enum.GetNames(type)) |
| | 31 | | { |
| 3610 | 32 | | var member = type.GetMember(enumName)[0]; |
| 3610 | 33 | | if (!member.GetCustomAttributes<OpenApiIgnoreEnumAttribute>().Any()) |
| | 34 | | { |
| 3550 | 35 | | enumOpenApiStrings.Add(new OpenApiString(enumName)); |
| | 36 | | } |
| | 37 | | } |
| | 38 | |
|
| 346 | 39 | | schema.Enum = enumOpenApiStrings; |
| | 40 | | } |
| 5022 | 41 | | } |
| | 42 | | } |