-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSwaggerFileUploadFilter.cs
79 lines (75 loc) · 2.83 KB
/
SwaggerFileUploadFilter.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
using Microsoft.AspNetCore.Http;
using Microsoft.OpenApi.Models;
using Swashbuckle.AspNetCore.SwaggerGen;
using System;
using System.Collections.Generic;
using System.Linq;
namespace NetPro.Swagger
{
public class SwaggerFileUploadFilter : IOperationFilter
{
private static readonly string[] FileParameters = new[] { "ContentType", "ContentDisposition", "Headers", "Length", "Name", "FileName" };
public void Apply(OpenApiOperation operation, OperationFilterContext context)
{
if (!((context.ApiDescription.HttpMethod.Equals("POST", StringComparison.OrdinalIgnoreCase) ||
context.ApiDescription.HttpMethod.Equals("PUT", StringComparison.OrdinalIgnoreCase)) && context.ApiDescription.ParameterDescriptions.Any(s => s.Type == typeof(IFormFile) || s.Type == typeof(IFormFileCollection))))
{
return;
}
RemoveExistingFileParameters(operation.Parameters);
#region 留用
//IDictionary<string, OpenApiSchema> pro = new Dictionary<string, OpenApiSchema>();
//foreach (var item in context.ApiDescription.ParameterDescriptions)
//{
// if (item.Type == typeof(IFormFileCollection) || item.Type == typeof(IFormFile))
// {
// pro.Add($"{item.Name}", new OpenApiSchema()
// {
// Description = "Select file",
// Type = "string",
// Format = "binary"
// });
// }
//}
//operation.RequestBody = new OpenApiRequestBody()
//{
// Content =
// {
// ["multipart/form-data"] = new OpenApiMediaType()
// {
// Schema = new OpenApiSchema()
// {
// Type = "object",
// Properties = pro
// }
// } ,
// }
//};
#endregion
operation.Responses.Clear();
operation.Responses.Add("200", new OpenApiResponse
{
Content = new Dictionary<string, OpenApiMediaType>
{
{
"multipart/form-data", new OpenApiMediaType
{
Schema = new OpenApiSchema
{
Type = "string",
Format = "binary"
}
}
}
}
});
}
private void RemoveExistingFileParameters(IList<OpenApiParameter> operationParameters)
{
foreach (var parameter in operationParameters.Where(p => p.In == 0 && FileParameters.Contains(p.Name)).ToList())
{
operationParameters.Remove(parameter);
}
}
}
}