-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCustomerHeaderParameter.cs
37 lines (34 loc) · 1.17 KB
/
CustomerHeaderParameter.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
using Microsoft.Extensions.Configuration;
using Microsoft.OpenApi.Models;
using Swashbuckle.AspNetCore.SwaggerGen;
using System.Collections.Generic;
namespace NetPro.Swagger
{
public class CustomerHeaderParameter : IOperationFilter
{
private readonly IConfiguration _configuration;
public CustomerHeaderParameter(IConfiguration configuration)
{
_configuration = configuration;
}
public void Apply(OpenApiOperation operation, OperationFilterContext context)
{
if (operation.Parameters == null)
{
operation.Parameters = new List<OpenApiParameter>();
}
var headers = _configuration.GetSection("SwaggerOption:Headers").Get<List<OpenApiParameter>>();
if (headers == null) return;
foreach (var header in headers)
{
operation.Parameters.Add(new OpenApiParameter
{
Name = header.Name,
In = ParameterLocation.Header,
Required = false,
Description = header.Description,
});
}
}
}
}