diff options
author | crupest <crupest@outlook.com> | 2020-08-21 23:24:47 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-08-21 23:24:47 +0800 |
commit | be532c56158362701a4d5704e995c743ff8b9804 (patch) | |
tree | 8db08430cb53a3b6657e36771b02a7ecbcc19462 /Timeline/Swagger/ByteDataRequestOperationProcessor.cs | |
parent | a8ca52b2ec6009c1be036e74edb76161447371b8 (diff) | |
download | timeline-be532c56158362701a4d5704e995c743ff8b9804.tar.gz timeline-be532c56158362701a4d5704e995c743ff8b9804.tar.bz2 timeline-be532c56158362701a4d5704e995c743ff8b9804.zip |
...
Diffstat (limited to 'Timeline/Swagger/ByteDataRequestOperationProcessor.cs')
-rw-r--r-- | Timeline/Swagger/ByteDataRequestOperationProcessor.cs | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/Timeline/Swagger/ByteDataRequestOperationProcessor.cs b/Timeline/Swagger/ByteDataRequestOperationProcessor.cs new file mode 100644 index 00000000..887831ac --- /dev/null +++ b/Timeline/Swagger/ByteDataRequestOperationProcessor.cs @@ -0,0 +1,27 @@ +using NJsonSchema;
+using NSwag;
+using NSwag.Generation.Processors;
+using NSwag.Generation.Processors.Contexts;
+using System.Linq;
+using Timeline.Models;
+
+namespace Timeline.Swagger
+{
+ /// <summary>
+ /// Coerce ByteData body type into the right one.
+ /// </summary>
+ public class ByteDataRequestOperationProcessor : IOperationProcessor
+ {
+ /// <inheritdoc/>
+ public bool Process(OperationProcessorContext context)
+ {
+ var hasByteDataBody = context.MethodInfo.GetParameters().Where(p => p.ParameterType == typeof(ByteData)).Any();
+ if (hasByteDataBody)
+ {
+ var bodyParameter = context.OperationDescription.Operation.Parameters.Where(p => p.Kind == OpenApiParameterKind.Body).Single();
+ bodyParameter.Schema = JsonSchema.FromType<byte[]>();
+ }
+ return true;
+ }
+ }
+}
|