jellyfin/Jellyfin.Api/Middleware/RobotsRedirectionMiddleware.cs

47 lines
1.4 KiB
C#
Raw Normal View History

using System;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.Logging;
2023-01-31 12:18:10 +01:00
namespace Jellyfin.Api.Middleware;
/// <summary>
/// Redirect requests to robots.txt to web/robots.txt.
/// </summary>
public class RobotsRedirectionMiddleware
{
2023-01-31 12:18:10 +01:00
private readonly RequestDelegate _next;
private readonly ILogger<RobotsRedirectionMiddleware> _logger;
/// <summary>
2023-01-31 12:18:10 +01:00
/// Initializes a new instance of the <see cref="RobotsRedirectionMiddleware"/> class.
/// </summary>
2023-01-31 12:18:10 +01:00
/// <param name="next">The next delegate in the pipeline.</param>
/// <param name="logger">The logger.</param>
public RobotsRedirectionMiddleware(
RequestDelegate next,
ILogger<RobotsRedirectionMiddleware> logger)
{
2023-01-31 12:18:10 +01:00
_next = next;
_logger = logger;
}
2023-01-31 12:18:10 +01:00
/// <summary>
/// Executes the middleware action.
/// </summary>
/// <param name="httpContext">The current HTTP context.</param>
/// <returns>The async task.</returns>
public async Task Invoke(HttpContext httpContext)
{
var localPath = httpContext.Request.Path.ToString();
if (string.Equals(localPath, "/robots.txt", StringComparison.OrdinalIgnoreCase))
{
2023-01-31 12:18:10 +01:00
_logger.LogDebug("Redirecting robots.txt request to web/robots.txt");
httpContext.Response.Redirect("web/robots.txt");
return;
}
2023-01-31 12:18:10 +01:00
await _next(httpContext).ConfigureAwait(false);
}
2021-12-24 18:28:27 +01:00
}