-
Notifications
You must be signed in to change notification settings - Fork 10.4k
Fix form handling and add NuGet pkg docs #55321
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
## About | ||
|
||
Microsoft.AspNetCore.OpenApi is a NuGet package that provides built-in support for generating OpenAPI documents from minimal or controller-based APIs in ASP.NET Core. | ||
|
||
## Key Features | ||
|
||
* Supports viewing generated OpenAPI documents at runtime via a parameterized endpoint (`/openapi/{documentName}.json`) | ||
* Supports generating an OpenAPI document at build-time | ||
* Supports customizing the generated document via document transformers | ||
|
||
## How to Use | ||
|
||
To start using Microsoft.AspNetCore.OpenApi in your ASP.NET Core application, follow these steps: | ||
|
||
### Installation | ||
|
||
```sh | ||
dotnet add package Microsoft.AspNetCore.OpenApi | ||
``` | ||
|
||
### Configuration | ||
|
||
In your Program.cs file, register the services provided by this package in the DI container and map the provided OpenAPI document endpoint in the application. | ||
|
||
```C# | ||
var builder = WebApplication.CreateBuilder(); | ||
|
||
// Registers the required services | ||
builder.Services.AddOpenApi(); | ||
|
||
var app = builder.Build(); | ||
|
||
// Adds the /openapi/{documentName}.json endpoint to the application | ||
app.MapOpenApi(); | ||
|
||
app.Run(); | ||
``` | ||
|
||
For more information on configuring and using Microsoft.AspNetCore.OpenApi, refer to the [official documentation](https://learn.microsoft.com/aspnet/core/fundamentals/minimal-apis/openapi). | ||
|
||
## Main Types | ||
|
||
<!-- The main types provided in this library --> | ||
|
||
The main types provided by this library are: | ||
|
||
* `OpenApiOptions`: Options for configuring OpenAPI document generation. | ||
* `IDocumentTransformer`: Transformer that modifies the OpenAPI document generated by the library. | ||
|
||
## Feedback & Contributing | ||
|
||
<!-- How to provide feedback on this package and contribute to it --> | ||
|
||
Microsoft.AspNetCore.OpenApi is released as open-source under the [MIT license](https://licenses.nuget.org/MIT). Bug reports and contributions are welcome at [the GitHub repository](https://github.com/dotnet/aspnetcore). |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,7 +42,26 @@ internal sealed class OpenApiComponentService(IOptions<JsonOptions> jsonOptions) | |
{ | ||
OnSchemaGenerated = (context, schema) => | ||
{ | ||
schema.ApplyPrimitiveTypesAndFormats(context.TypeInfo.Type); | ||
var type = context.TypeInfo.Type; | ||
// Fix up schemas generated for IFormFile, IFormFileCollection, Stream, and PipeReader | ||
// that appear as properties within complex types. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think the goal here is to take a type like There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ish. The underlying schema generator will use |
||
if (type == typeof(IFormFile) || type == typeof(Stream) || type == typeof(PipeReader)) | ||
amcasey marked this conversation as resolved.
Show resolved
Hide resolved
|
||
{ | ||
schema.Clear(); | ||
schema[OpenApiSchemaKeywords.TypeKeyword] = "string"; | ||
schema[OpenApiSchemaKeywords.FormatKeyword] = "binary"; | ||
} | ||
else if (type == typeof(IFormFileCollection)) | ||
{ | ||
schema.Clear(); | ||
schema[OpenApiSchemaKeywords.TypeKeyword] = "array"; | ||
schema[OpenApiSchemaKeywords.ItemsKeyword] = new JsonObject | ||
{ | ||
[OpenApiSchemaKeywords.TypeKeyword] = "string", | ||
[OpenApiSchemaKeywords.FormatKeyword] = "binary" | ||
}; | ||
} | ||
schema.ApplyPrimitiveTypesAndFormats(type); | ||
if (context.GetCustomAttributes(typeof(ValidationAttribute)) is { } validationAttributes) | ||
{ | ||
schema.ApplyValidationAttributes(validationAttributes); | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -213,7 +213,7 @@ private OpenApiResponse GetResponse(ApiDescription apiDescription, int statusCod | |
.Select(responseFormat => responseFormat.MediaType); | ||
foreach (var contentType in apiResponseFormatContentTypes) | ||
{ | ||
var schema = apiResponseType.Type is {} type ? _componentService.GetOrCreateSchema(type) : new OpenApiSchema(); | ||
var schema = apiResponseType.Type is { } type ? _componentService.GetOrCreateSchema(type) : new OpenApiSchema(); | ||
response.Content[contentType] = new OpenApiMediaType { Schema = schema }; | ||
} | ||
|
||
|
@@ -296,11 +296,101 @@ private OpenApiRequestBody GetFormRequestBody(IList<ApiRequestFormat> supportedR | |
Content = new Dictionary<string, OpenApiMediaType>() | ||
}; | ||
|
||
// Forms are represented as objects with properties for each form field. | ||
var schema = new OpenApiSchema { Type = "object", Properties = new Dictionary<string, OpenApiSchema>() }; | ||
foreach (var parameter in formParameters) | ||
// Group form parameters by their name because MVC explodes form parameters that are bound from the | ||
// same model instance into separate ApiParameterDescriptions in ApiExplorer, while minimal APIs does not. | ||
// | ||
// public record Todo(int Id, string Title, bool Completed, DateTime CreatedAt) | ||
// public void PostMvc([FromForm] Todo person) { } | ||
// app.MapGet("/form-todo", ([FromForm] Todo todo) => Results.Ok(todo)); | ||
// | ||
// In the example above, MVC's ApiExplorer will bind four separate arguments to the Todo model while minimal APIs will | ||
// bind a single Todo model instance to the todo parameter. Grouping by name allows us to handle both cases. | ||
var groupedFormParameters = formParameters.GroupBy(parameter => parameter.ParameterDescriptor.Name); | ||
// If there is only one real parameter derived from the form body, then set it directly in the schema. | ||
var hasMultipleFormParameters = groupedFormParameters.Count() > 1; | ||
foreach (var parameter in groupedFormParameters) | ||
{ | ||
schema.Properties[parameter.Name] = _componentService.GetOrCreateSchema(parameter.Type); | ||
// ContainerType is not null when the parameter has been exploded into separate API | ||
// parameters by ApiExplorer as in the MVC model. | ||
if (parameter.All(parameter => parameter.ModelMetadata.ContainerType is null)) | ||
{ | ||
var description = parameter.Single(); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't understand why it follows that if the container types are all null there must only be one item in the group. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
var parameterSchema = _componentService.GetOrCreateSchema(description.Type); | ||
// Form files are keyed by their parameter name so we must capture the parameter name | ||
// as a property in the schema. | ||
if (description.Type == typeof(IFormFile) || description.Type == typeof(IFormFileCollection)) | ||
{ | ||
if (hasMultipleFormParameters) | ||
{ | ||
schema.AllOf.Add(new OpenApiSchema | ||
{ | ||
Type = "object", | ||
Properties = new Dictionary<string, OpenApiSchema> | ||
{ | ||
[description.Name] = parameterSchema | ||
} | ||
}); | ||
} | ||
else | ||
{ | ||
schema.Properties[description.Name] = parameterSchema; | ||
} | ||
} | ||
else | ||
{ | ||
if (hasMultipleFormParameters) | ||
{ | ||
// Here and below: POCOs do not need to be need under their parameter name in the grouping. | ||
// The form-binding implementation will capture them implicitly. | ||
if (description.ModelMetadata.IsComplexType) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is pulled out because we can refer to the complex type by name and don't have to create an inline schema? Assuming so, is it possible for the complex type to be anonymous or unnameable? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. All the schemas that we generate are currently inline at the moment. This is more-so about the fact that schemas for complex types don't need to be nested under the parameter name based on the way parameters are bound from the form. For an endpoint like:
We want to generate the following schema: {
"properties": {
"id": { ... },
"title": { ... },
"isCompleted": { ... }
}
} Not this one: {
"properties": {
"todo": {
"properties": {
"id": { ... },
"title": { ... },
"isCompleted": { ... }
}
}
}
} |
||
{ | ||
schema.AllOf.Add(parameterSchema); | ||
} | ||
else | ||
{ | ||
schema.AllOf.Add(new OpenApiSchema | ||
{ | ||
Type = "object", | ||
Properties = new Dictionary<string, OpenApiSchema> | ||
{ | ||
[description.Name] = parameterSchema | ||
} | ||
}); | ||
} | ||
} | ||
else | ||
{ | ||
if (description.ModelMetadata.IsComplexType) | ||
{ | ||
schema = parameterSchema; | ||
} | ||
else | ||
{ | ||
schema.Properties[description.Name] = parameterSchema; | ||
} | ||
} | ||
} | ||
} | ||
else | ||
{ | ||
if (hasMultipleFormParameters) | ||
{ | ||
var propertySchema = new OpenApiSchema { Type = "object", Properties = new Dictionary<string, OpenApiSchema>() }; | ||
foreach (var description in parameter) | ||
{ | ||
propertySchema.Properties[description.Name] = _componentService.GetOrCreateSchema(description.Type); | ||
} | ||
schema.AllOf.Add(propertySchema); | ||
} | ||
else | ||
{ | ||
foreach (var description in parameter) | ||
{ | ||
schema.Properties[description.Name] = _componentService.GetOrCreateSchema(description.Type); | ||
} | ||
} | ||
} | ||
} | ||
|
||
foreach (var requestFormat in supportedRequestFormats) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add any tests with Stream and PipeReader?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add tests here. It appears that Stream/PipeReader get the same treatment as FormFiles when procued by the ApiExplorer layer for MVC. Added a note about this in #55349.