| | 1 | | using System; |
| | 2 | | using System.Linq; |
| | 3 | | using Jellyfin.Api.Attributes; |
| | 4 | | using Microsoft.OpenApi.Models; |
| | 5 | | using Swashbuckle.AspNetCore.SwaggerGen; |
| | 6 | |
|
| | 7 | | namespace Jellyfin.Server.Filters |
| | 8 | | { |
| | 9 | | /// <inheritdoc /> |
| | 10 | | public class FileResponseFilter : IOperationFilter |
| | 11 | | { |
| | 12 | | private const string SuccessCode = "200"; |
| 1 | 13 | | private static readonly OpenApiMediaType _openApiMediaType = new OpenApiMediaType |
| 1 | 14 | | { |
| 1 | 15 | | Schema = new OpenApiSchema |
| 1 | 16 | | { |
| 1 | 17 | | Type = "string", |
| 1 | 18 | | Format = "binary" |
| 1 | 19 | | } |
| 1 | 20 | | }; |
| | 21 | |
|
| | 22 | | /// <inheritdoc /> |
| | 23 | | public void Apply(OpenApiOperation operation, OperationFilterContext context) |
| | 24 | | { |
| 8996 | 25 | | foreach (var attribute in context.ApiDescription.ActionDescriptor.EndpointMetadata) |
| | 26 | | { |
| 4150 | 27 | | if (attribute is ProducesFileAttribute producesFileAttribute) |
| | 28 | | { |
| | 29 | | // Get operation response values. |
| 68 | 30 | | var response = operation.Responses |
| 68 | 31 | | .FirstOrDefault(o => o.Key.Equals(SuccessCode, StringComparison.Ordinal)); |
| | 32 | |
|
| | 33 | | // Operation doesn't have a response. |
| 68 | 34 | | if (response.Value is null) |
| | 35 | | { |
| | 36 | | continue; |
| | 37 | | } |
| | 38 | |
|
| | 39 | | // Clear existing responses. |
| 68 | 40 | | response.Value.Content.Clear(); |
| | 41 | |
|
| | 42 | | // Add all content-types as file. |
| 278 | 43 | | foreach (var contentType in producesFileAttribute.ContentTypes) |
| | 44 | | { |
| 71 | 45 | | response.Value.Content.Add(contentType, _openApiMediaType); |
| | 46 | | } |
| | 47 | |
|
| 68 | 48 | | break; |
| | 49 | | } |
| | 50 | | } |
| 382 | 51 | | } |
| | 52 | | } |
| | 53 | | } |