matrix-spec/layouts/partials/openapi/render-api.html

51 lines
1.3 KiB
HTML
Raw Normal View History

2021-01-30 00:30:39 +01:00
{{/*
Render an HTTP API, given:
* `api_data`: the OpenAPI data
2021-01-30 00:30:39 +01:00
* `base_url`: the base URL: that is, the part we glue onto the front
of each value in `paths` to get a complete URL.
*/}}
{{ $api_data := index .api_data }}
{{ $base_url := .base_url }}
{{ range $path_name, $path_data := $api_data.paths }}
{{ $endpoint := delimit (slice $base_url $path_name ) "" }}
{{/* note that a `paths` entry can be a $ref */}}
{{ $params := dict "endpoint" $endpoint }}
2021-01-30 00:30:39 +01:00
{{ with $path_data.get }}
{{ $operation_params := merge $params (dict "method" "GET" "operation_data" . ) }}
{{ partial "openapi/render-operation" $operation_params }}
{{ end }}
{{ with $path_data.post }}
{{ $operation_params := merge $params (dict "method" "POST" "operation_data" . ) }}
{{ partial "openapi/render-operation" $operation_params }}
{{ end }}
{{ with $path_data.put }}
{{ $operation_params := merge $params (dict "method" "PUT" "operation_data" . ) }}
{{ partial "openapi/render-operation" $operation_params }}
{{ end }}
{{ with $path_data.delete }}
{{ $operation_params := merge $params (dict "method" "DELETE" "operation_data" . ) }}
{{ partial "openapi/render-operation" $operation_params }}
{{ end }}
{{ end }}