操作日志功能完善

This commit is contained in:
橙子
2022-10-01 23:53:43 +08:00
parent 0b05d4d186
commit dd1aec3b60
28 changed files with 629 additions and 79 deletions

View File

@@ -0,0 +1,44 @@
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.Logging;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Yi.Framework.WebCore.MiddlewareExtend
{
public class HttpBodyMiddleware
{
private readonly RequestDelegate _next;
private ILogger<HttpBodyMiddleware> _logger;
public HttpBodyMiddleware(RequestDelegate next, ILogger<HttpBodyMiddleware> logger)
{
_next = next;
_logger = logger;
}
public async Task Invoke(HttpContext context)
{
context.Request.EnableBuffering();
if (context.Request.Query.TryGetValue("access_token", out var token))
{
context.Request.Headers.Add("Authorization", $"Bearer {token}");
}
await _next(context);
}
}
public static class HttpBodyExtend
{
public static IApplicationBuilder UseHttpBodyService(this IApplicationBuilder builder)
{
return builder.UseMiddleware<HttpBodyMiddleware>();
}
}
}