src/WebJobs.Script.WebHost/Middleware/HandleCancellationMiddleware.cs (40 lines of code) (raw):
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
using System;
using System.IO;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Http;
using Microsoft.Azure.WebJobs.Script.WebHost.Diagnostics.Extensions;
using Microsoft.Extensions.Logging;
namespace Microsoft.Azure.WebJobs.Script.WebHost.Middleware
{
internal class HandleCancellationMiddleware
{
private readonly ILogger _logger;
private readonly RequestDelegate _next;
public HandleCancellationMiddleware(RequestDelegate next, ILogger<HandleCancellationMiddleware> logger)
{
_logger = logger;
_next = next;
}
public async Task Invoke(HttpContext context)
{
var requestId = context.Request.HttpContext.Items[ScriptConstants.AzureFunctionsRequestIdKey].ToString();
try
{
await _next.Invoke(context);
if (context.RequestAborted.IsCancellationRequested && !context.Response.HasStarted)
{
_logger.RequestAborted(requestId);
context.Response.StatusCode = StatusCodes.Status499ClientClosedRequest;
}
}
catch (Exception ex) when ((ex is OperationCanceledException || ex is IOException) && context.RequestAborted.IsCancellationRequested)
{
_logger.RequestAborted(requestId);
if (!context.Response.HasStarted)
{
context.Response.StatusCode = StatusCodes.Status499ClientClosedRequest;
}
}
}
}
}