| | 1 | | using System.Collections.Generic; |
| | 2 | | using Jellyfin.Api.Attributes; |
| | 3 | | using Microsoft.OpenApi.Models; |
| | 4 | | using Swashbuckle.AspNetCore.SwaggerGen; |
| | 5 | |
|
| | 6 | | namespace Jellyfin.Server.Filters |
| | 7 | | { |
| | 8 | | /// <inheritdoc /> |
| | 9 | | public class FileRequestFilter : IOperationFilter |
| | 10 | | { |
| | 11 | | /// <inheritdoc /> |
| | 12 | | public void Apply(OpenApiOperation operation, OperationFilterContext context) |
| | 13 | | { |
| 9284 | 14 | | foreach (var attribute in context.ApiDescription.ActionDescriptor.EndpointMetadata) |
| | 15 | | { |
| 4263 | 16 | | if (attribute is AcceptsFileAttribute acceptsFileAttribute) |
| | 17 | | { |
| 6 | 18 | | operation.RequestBody = GetRequestBody(acceptsFileAttribute.ContentTypes); |
| 6 | 19 | | break; |
| | 20 | | } |
| | 21 | | } |
| 382 | 22 | | } |
| | 23 | |
|
| | 24 | | private static OpenApiRequestBody GetRequestBody(IEnumerable<string> contentTypes) |
| | 25 | | { |
| 6 | 26 | | var body = new OpenApiRequestBody(); |
| 6 | 27 | | var mediaType = new OpenApiMediaType |
| 6 | 28 | | { |
| 6 | 29 | | Schema = new OpenApiSchema |
| 6 | 30 | | { |
| 6 | 31 | | Type = "string", |
| 6 | 32 | | Format = "binary" |
| 6 | 33 | | } |
| 6 | 34 | | }; |
| 24 | 35 | | foreach (var contentType in contentTypes) |
| | 36 | | { |
| 6 | 37 | | body.Content.Add(contentType, mediaType); |
| | 38 | | } |
| | 39 | |
|
| 6 | 40 | | return body; |
| | 41 | | } |
| | 42 | | } |
| | 43 | | } |