RuoVea.ExFilter 6.0.18.12

dotnet add package RuoVea.ExFilter --version 6.0.18.12
NuGet\Install-Package RuoVea.ExFilter -Version 6.0.18.12
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="RuoVea.ExFilter" Version="6.0.18.12" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add RuoVea.ExFilter --version 6.0.18.12
#r "nuget: RuoVea.ExFilter, 6.0.18.12"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install RuoVea.ExFilter as a Cake Addin
#addin nuget:?package=RuoVea.ExFilter&version=6.0.18.12

// Install RuoVea.ExFilter as a Cake Tool
#tool nuget:?package=RuoVea.ExFilter&version=6.0.18.12

RuoVea.ExFilter

介绍

注入 进行全局的异常日志收集、执行操作日志、参数验证、对资源型信息进行过滤、对结果进行统一、接口安全校验、签名验证 MD5 ( appKey + signKey + timeStamp + data );

使用示例

注入 进行全局的异常日志收集、执行操作日志、参数验证

builder.Services.ExceptionSetup();// 注入 全局错误日志

builder.Services.ExceptionSetup(ExceptionLog actionOptions);// 注入 全局错误日志

builder.Services.ExceptionSetup(builder.Configuration.GetSection("AopOption:ExceptionLog"));// 注入 全局错误日志

builder.Services.RequestActionSetup();// 注入 请求日志拦截 [执行操作日志、参数验证 ]

builder.Services.RequestActionSetup(RequestLog actionOptions);// 注入 请求日志拦截 [执行操作日志、参数验证 ]

builder.Services.RequestActionSetup(builder.Configuration.GetSection("AopOption:RequestLog"));// 注入 请求日志拦截 [执行操作日志、参数验证 ]

builder.Services.ResourceSetup();//对资源型信息进行过滤

builder.Services.ResultSetup();//对结果进行统一

builder.Services.ApISafeSetup(AppSign actionOptions);//接口安全校验

builder.Services.ApISafeSetup(builder.Configuration.GetSection("AopOption:AppSign"));//接口安全校验

builder.Services.ApISignSetup(AppSign actionOptions);//签名验证 ( appKey + signKey + timeStamp + data );

builder.Services.ApISignSetup(builder.Configuration.GetSection("AopOption:AppSign"));//签名验证 ( appKey + signKey + timeStamp + data );

builder.Services.AddUiFilesZipSetup();//将前端UI压缩文件进行解压

app.UseVirtualPathMiddle();//虚拟路径

前端
"appKey": appKey,
"timeStamp": (Math.floor(Date.now() / 1000) + 1000),

继承重写IRestfulFilterLog 方法

Non**特性相关

不进行接口安全校验 → NonAplSafeAttribute

不签名验证 → NonAplSignAttribute

不进行全局的异常日志收集 → NonExceptionAttribute

不对资源型信息进行过滤 → NonResourceAttribute

不对结果进行统一 → NonRestfulResultAttribute

相关配置文件
  /* 全局的异常日志配置 */
  "ExceptionLog": {
    "Enabled": true,
    "LogToFile": false,
    "LogMore": false
  },

   /* 请求日志拦截配置 */
  "RequestLog": {
    "Enabled": true,
    "LogToFile": false, //记录到文件
    "LogMore": false, //记录更多内容 如写入数据库 需继承重写 IRestfulFilterLog
    "IgnoreApis": ""
  },

  /*接口安全校验*/
  "ApISafe": {
    "AppKeys": "",//多个appKey用逗号分开
    "AppKeyName": "appKey",
    "TimeStampName": "timeStamp",
    "ExpiresMinute": 2, //单位(分钟) 
  }

  /*签名验证*/
  "AppSign": {
    "AppKeys": "",//多个appKey用逗号分开
    "AppKeyName": "appKey",
    "TimeStampName": "timeStamp",
    "ExpiresMinute": 2, //单位(分钟) 

    "SignKey": "", //签名key 
    "SignatureName": "signature", //签名
    "IgnoreApi": "" //签名验证忽略api列表
  }


 /* 整合配置 */
  "AopOption": {
    "RequestLog": {
      "Enabled": true,
      "LogToFile": false, //记录到文件
      "LogMore": false, //记录更多内容 如写入数据库 需继承重写 IRestfulFilterLog
      "IgnoreApis": ""
    },
    "ExceptionLog": {
      "Enabled": true,
      "LogToFile": false,
      "LogMore": false
    },
    "AppSign": {
      "AppKeys": "",//多个appKey用逗号分开
      "AppKeyName": "appKey",
      "TimeStampName": "timeStamp",
      "ExpiresMinute": 2, //单位(分钟)  

      "SignKey": "", //签名key 
      "SignatureName": "signature", //签名
      "IgnoreApi": "" //签名验证忽略api列表
    }
  },

  "VirtualPath":""//虚拟路径

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
6.0.18.12 98 4/15/2024
6.0.18.11 99 4/14/2024
6.0.18.10 119 3/13/2024
6.0.18.9 141 3/13/2024
6.0.18.8 125 3/11/2024
6.0.18.7 175 2/28/2024
6.0.18.6 149 2/27/2024
6.0.18.5 224 1/29/2024
6.0.18.4 229 1/27/2024
6.0.18.3 191 1/26/2024
6.0.18.2 293 12/28/2023
6.0.18.1 280 12/1/2023
6.0.18 288 9/27/2023
6.0.17 276 9/16/2023
6.0.16 403 3/26/2023
6.0.15 384 3/26/2023
6.0.13 416 3/11/2023
6.0.12 454 12/23/2022
6.0.11 397 12/23/2022
6.0.10 534 10/8/2022
6.0.9 595 9/16/2022
6.0.8 565 8/18/2022
6.0.7 551 6/10/2022
6.0.6 608 3/15/2022
6.0.5 601 3/14/2022
6.0.4 600 2/18/2022
6.0.3 542 2/18/2022
6.0.2 584 2/17/2022
6.0.1 606 2/15/2022
6.0.0 613 2/11/2022