| | 1 | | using System; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using System.Net.Http.Headers; |
| | 4 | | using Microsoft.OpenApi.Models; |
| | 5 | | using Swashbuckle.AspNetCore.SwaggerGen; |
| | 6 | |
|
| | 7 | | namespace Jellyfin.Server.Filters; |
| | 8 | |
|
| | 9 | | internal class RetryOnTemporarlyUnavailableFilter : IOperationFilter |
| | 10 | | { |
| | 11 | | public void Apply(OpenApiOperation operation, OperationFilterContext context) |
| | 12 | | { |
| 382 | 13 | | operation.Responses.Add("503", new OpenApiResponse() |
| 382 | 14 | | { |
| 382 | 15 | | Description = "The server is currently starting or is temporarly not available.", |
| 382 | 16 | | Headers = new Dictionary<string, OpenApiHeader>() |
| 382 | 17 | | { |
| 382 | 18 | | { |
| 382 | 19 | | "Retry-After", |
| 382 | 20 | | new() { AllowEmptyValue = true, Required = false, Description = "A hint for when to retry the operat |
| 382 | 21 | | }, |
| 382 | 22 | | { |
| 382 | 23 | | "Message", |
| 382 | 24 | | new() { AllowEmptyValue = true, Required = false, Description = "A short plain-text reason why the s |
| 382 | 25 | | } |
| 382 | 26 | | }, |
| 382 | 27 | | Content = new Dictionary<string, OpenApiMediaType>() |
| 382 | 28 | | { |
| 382 | 29 | | { |
| 382 | 30 | | "text/html", |
| 382 | 31 | | new OpenApiMediaType() |
| 382 | 32 | | } |
| 382 | 33 | | } |
| 382 | 34 | | }); |
| 382 | 35 | | } |
| | 36 | | } |