Skip to content
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

Incorrect swagger.json generation when using FromForm parameters without the WithOpenApi extension method #52284

Open
1 task done
marcominerva opened this issue Nov 22, 2023 · 5 comments
Labels
area-minimal Includes minimal APIs, endpoint filters, parameter binding, request delegate generator etc feature-openapi
Milestone

Comments

@marcominerva
Copy link
Contributor

marcominerva commented Nov 22, 2023

Is there an existing issue for this?

  • I have searched the existing issues

Describe the bug

I have the following endpoints:

app.MapPost("/api/products", ([FromForm] Product product) =>
{
    return TypedResults.NoContent();
});

app.MapPost("/api/products-with-openapi", ([FromForm] Product product) =>
{
    return TypedResults.NoContent();
})
.WithOpenApi();

public record class Product(string Name, double Price);

These endpoints differ only for the WithOpenApi extension method, but the swagger.json definition is quite different:

"/api/products": {
  "post": {
    "tags": [
      "FromFormIssue"
    ],
    "requestBody": {
      "content": {
        "multipart/form-data": {
          "schema": {
            "required": [
              "product"
            ],
            "type": "object",
            "properties": {
              "product": {
                "$ref": "#/components/schemas/Product"
              }
            }
          },
          "encoding": {
            "product": {
              "style": "form"
            }
          }
        },
        "application/x-www-form-urlencoded": {
          "schema": {
            "required": [
              "product"
            ],
            "type": "object",
            "properties": {
              "product": {
                "$ref": "#/components/schemas/Product"
              }
            }
          },
          "encoding": {
            "product": {
              "style": "form"
            }
          }
        }
      }
    },
    "responses": {
      "204": {
        "description": "No Content"
      }
    }
  }
}


"/api/products-with-openapi": {
  "post": {
    "tags": [
      "FromFormIssue"
    ],
    "requestBody": {
      "content": {
        "multipart/form-data": {
          "schema": {
            "$ref": "#/components/schemas/Product"
          }
        },
        "application/x-www-form-urlencoded": {
          "schema": {
            "$ref": "#/components/schemas/Product"
          }
        }
      },
      "required": true
    },
    "responses": {
      "204": {
        "description": "No Content"
      }
    }
  }
}

So, in Swagger I get the following result:

WRONG
image

CORRECT
image

Expected Behavior

Both the endpoints should produce the same swagger.json definition that defines the parameters from Form.

Steps To Reproduce

Minimal repro here: https://github.com/marcominerva/FromFormIssue

Exceptions (if any)

No response

.NET Version

8.0.100

Anything else?

No response

@marcominerva marcominerva changed the title Incorrect swager.json generation when using FromForm parameters without the WithOpenApi extension method Incorrect swagger.json generation when using FromForm parameters without the WithOpenApi extension method Nov 22, 2023
@KennethHoff
Copy link

KennethHoff commented Dec 4, 2023

I just stumbled upon this problem as well. Good thing you made this issue or I probably wouldn't have found a (bandaid) fix like you did - as it involves a package I didn't realize existed.

@captainsafia captainsafia added feature-openapi area-minimal Includes minimal APIs, endpoint filters, parameter binding, request delegate generator etc and removed area-web-frameworks labels Dec 13, 2023
@captainsafia
Copy link
Member

The schema generation for each of these components is controlled by Swashbuckle.AspNetCore at the moment. To resolve this issue, we'd have to debug further into how the schema is mapped into the built-in OpenApiOperation in Swashbuckle to understand how the override is happening.

@KennethHoff
Copy link

Is there any discussion into creating a first party definition generator for AspNetCore? It doesn't need a full blown swagger UI and all that jazz, but just the json file would be lovely!

Swashbuckle hasn't had an update in almost a year, and NSwag currently doesn't support forms in Minimal APIs at all.

It feels weird how there's so much effort spent making the OpenAPI package and the API explorer and whatnot but seemingly in order to use it for anything useful you need a third party package (or write a lot of code yourself).

... Unless I've missed something and there is a built-in schema generator that I've managed to dodge through my web searches.

@captainsafia
Copy link
Member

Is there any discussion into creating a first party definition generator for AspNetCore? It doesn't need a full blown swagger UI and all that jazz, but just the json file would be lovely!

Hopefully more on this front soon. 😅 I've done some prototyping on this in a sample branch but it needs considerable work before it can formalized.

Feedback that supporting just the OpenAPI document generation into a JSON file is great to share! I've always been of the opinion that an artifact that you can integrate with other systems (client generation, Postman, API management, etc.) is the most important aspect of this work.

@dotnet-policy-service dotnet-policy-service bot added the pending-ci-rerun When assigned to a PR indicates that the CI checks should be rerun label Feb 6, 2024
@wtgodbe wtgodbe removed the pending-ci-rerun When assigned to a PR indicates that the CI checks should be rerun label Feb 6, 2024
@dotnet-policy-service dotnet-policy-service bot added the pending-ci-rerun When assigned to a PR indicates that the CI checks should be rerun label Feb 6, 2024
@wtgodbe wtgodbe removed the pending-ci-rerun When assigned to a PR indicates that the CI checks should be rerun label Feb 13, 2024
@dotnet dotnet deleted a comment from dotnet-policy-service bot Feb 13, 2024
@dotnet dotnet deleted a comment from dotnet-policy-service bot Feb 13, 2024
@captainsafia
Copy link
Member

I've verified that our built-in document generation is doing the right thing here and added some test coverage in #55321.

In the future, I plan on replating WithOpenApi on top of operation transformers so that there is a consistent experience here.

Closing this as resolved with a fix incoming in preview4.

@captainsafia captainsafia added this to the 9.0-preview4 milestone Apr 23, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area-minimal Includes minimal APIs, endpoint filters, parameter binding, request delegate generator etc feature-openapi
Projects
None yet
Development

No branches or pull requests

4 participants