| | 1 | | using System; |
| | 2 | | using System.Net.Mime; |
| | 3 | | using System.Threading.Tasks; |
| | 4 | | using MediaBrowser.Controller; |
| | 5 | | using MediaBrowser.Model.Globalization; |
| | 6 | | using Microsoft.AspNetCore.Http; |
| | 7 | |
|
| | 8 | | namespace Jellyfin.Api.Middleware; |
| | 9 | |
|
| | 10 | | /// <summary> |
| | 11 | | /// Shows a custom message during server startup. |
| | 12 | | /// </summary> |
| | 13 | | public class ServerStartupMessageMiddleware |
| | 14 | | { |
| | 15 | | private readonly RequestDelegate _next; |
| | 16 | |
|
| | 17 | | /// <summary> |
| | 18 | | /// Initializes a new instance of the <see cref="ServerStartupMessageMiddleware"/> class. |
| | 19 | | /// </summary> |
| | 20 | | /// <param name="next">The next delegate in the pipeline.</param> |
| | 21 | | public ServerStartupMessageMiddleware(RequestDelegate next) |
| | 22 | | { |
| 21 | 23 | | _next = next; |
| 21 | 24 | | } |
| | 25 | |
|
| | 26 | | /// <summary> |
| | 27 | | /// Executes the middleware action. |
| | 28 | | /// </summary> |
| | 29 | | /// <param name="httpContext">The current HTTP context.</param> |
| | 30 | | /// <param name="serverApplicationHost">The server application host.</param> |
| | 31 | | /// <param name="localizationManager">The localization manager.</param> |
| | 32 | | /// <returns>The async task.</returns> |
| | 33 | | public async Task Invoke( |
| | 34 | | HttpContext httpContext, |
| | 35 | | IServerApplicationHost serverApplicationHost, |
| | 36 | | ILocalizationManager localizationManager) |
| | 37 | | { |
| | 38 | | if (serverApplicationHost.CoreStartupHasCompleted |
| | 39 | | || httpContext.Request.Path.Equals("/system/ping", StringComparison.OrdinalIgnoreCase)) |
| | 40 | | { |
| | 41 | | await _next(httpContext).ConfigureAwait(false); |
| | 42 | | return; |
| | 43 | | } |
| | 44 | |
|
| | 45 | | var message = localizationManager.GetLocalizedString("StartupEmbyServerIsLoading"); |
| | 46 | | httpContext.Response.StatusCode = StatusCodes.Status503ServiceUnavailable; |
| | 47 | | httpContext.Response.ContentType = MediaTypeNames.Text.Html; |
| | 48 | | await httpContext.Response.WriteAsync(message, httpContext.RequestAborted).ConfigureAwait(false); |
| | 49 | | } |
| | 50 | | } |