OpenAPITools / openapi-generator

OpenAPI Generator allows generation of API client libraries (SDK generation), server stubs, documentation and configuration automatically given an OpenAPI Spec (v2, v3)
https://openapi-generator.tech
Apache License 2.0
21.48k stars 6.5k forks source link

[BUG][typescript-fetch] Query parameters with `explode: true` not supported #10438

Open dcasado opened 3 years ago

dcasado commented 3 years ago

Bug Report Checklist

Description

The generated code does not take into account the field explode: true. It should generate separate parameters for each key-value pair of the map for the request as the specification says.

Passing an object to a query parameter that has the property explode: true eg "filters":{"lang": "en", "scope":"mobile"} the expected behavior is to generate ?lang=en&scope=mobile but the actual generated query is ?filters[lang]=en&filters[scope]=mobile

openapi-generator version

5.2.1

OpenAPI declaration file content or url
info:
  title: Example
  version: 1.0.0
openapi: 3.0.3
paths:
  "/resource":
    parameters:
      - name: filters
        in: query
        required: true
        schema:
          type: object
          additionalProperties:
            type: string
          example:
            lang: en
            scope: mobile
        style: form
        explode: true
    get:
      responses:
        '200':
          description: Ok
          content:
            application/json:
              schema:
                properties:
                  id:
                    type: string
                type: object
Generation Details

Use generator [typescript-fetch] with default options

generatorName: typescript-fetch
Steps to reproduce
  1. Generate code
  2. Call await DefaultApi().resourceGet({filters:{lang: "en", scope: "mobile"}})
  3. See that request has filters[lang]=en&filters[scope]=mobile as query parameters
Related issues/PRs
Suggest a fix

The template code it does not take into account if the parameter has explode: true to assign it to the query parameters. https://github.com/OpenAPITools/openapi-generator/blob/ef0186c9cff7a14f7af6e1e7b6efc0a44b049a18/modules/openapi-generator/src/main/resources/typescript-fetch/apis.mustache#L117

{{^isArray}}
if (requestParameters.{{paramName}} !== undefined) {
    {{#isDateTime}}
    queryParameters['{{baseName}}'] = (requestParameters.{{paramName}} as any).toISOString();
    {{/isDateTime}}
    {{^isDateTime}}
    {{#isDate}}
    queryParameters['{{baseName}}'] = (requestParameters.{{paramName}} as any).toISOString().substr(0,10);
    {{/isDate}}
    {{^isDate}}
    queryParameters['{{baseName}}'] = requestParameters.{{paramName}};
    {{/isDate}}
    {{/isDateTime}}
}

{{/isArray}}

We can add another case to check if the parameter is an object and has explode to true and generate the necessary code accordingly.

{{^isArray}}
if (requestParameters.{{paramName}} !== undefined) {
    {{#isDateTime}}
    queryParameters['{{baseName}}'] = (requestParameters.{{paramName}} as any).toISOString();
    {{/isDateTime}}
    {{^isDateTime}}
    {{#isDate}}
    queryParameters['{{baseName}}'] = (requestParameters.{{paramName}} as any).toISOString().substr(0,10);
    {{/isDate}}
    {{^isDate}}
    {{#isContainer}}
    {{#isExplode}}
    for (const key in requestParameters.{{paramName}}) {
        queryParameters[key] = requestParameters.{{paramName}}[key]
    }
    {{/isExplode}}
    {{^isExplode}}
    queryParameters['{{baseName}}'] = requestParameters.{{paramName}};
    {{/isExplode}}
    {{/isContainer}}
    {{^isContainer}}
    queryParameters['{{baseName}}'] = requestParameters.{{paramName}};
    {{/isContainer}}
    {{/isDate}}
    {{/isDateTime}}
}

{{/isArray}}
fenuks commented 2 years ago

I'd add the same for typescript-axios.

Something like

                  {{#isExplode}}
                    {{#isModel}}
                      for (let key of Object.keys({{paramName}})) {
                        localVarQueryParameter[key] = ({{paramName}} as any)[key];
                      }

                    {{/isModel}}
                    {{#isPrimitiveType}}
                        localVarQueryParameter['{{baseName}}'] = {{paramName}};
                    {{/isPrimitiveType}}
                  {{/isExplode}}
                  {{^isExplode}}
                      localVarQueryParameter['{{baseName}}'] = {{paramName}};
                  {{/isExplode}}

seem to work, but I'd like generate mapping statically in template rather than dynamically with ts, but {{vars}} is empty.

DennisMaass commented 8 months ago

Unfortunately, I got the same error and was confused that it stopped working after the following closed issue https://github.com/OpenAPITools/openapi-generator/issues/15633

But afterwards I found out that the merge unfortunately only fixed the "typescript-axios" not the "typescript-fetch" client. Is it possible to merge the same fix into this client as well?

marvk commented 7 months ago

Any updates on this? 😥

tamusil-cen55253 commented 4 months ago

Can somebody fixed it for typescript-fetch please?