Custom generation #
To completely customize the templates that are being considered, their file names and paths, go-swagger allows you to pass in a configuration file. There are basically 4 types of items that are being generated:
- Models
- Operations
- Operation groups (tagged groups of operations)
- Application
You provide a configuration that describes the type of template, the source for where to find the template. For built-in templates the name should be prefixed with asset:
.
You also provide the target directory and the file name. Directory and file names are processed as templates too and allow for a number of filters.
We use the viper library to read config values, this means you can provide the configuration file in whichever format you like: json, yaml, hcl or toml.
Available filters in templates #
We use the sprig library to provide a large variety of template functions for creating custom templates.
In addition to this there are a number of added filters you can use inside a template to manipulate values:
Filter | Description skip_exists|boolean|Skip generating content for a file if the specified target file already exists. Use this for files the user needs to customise. skip_format|boolean|Skip formatting code from the template according to the standard golang rules. This may be useful if you have your own coding conventions that custom templates already adhere to, or if you are generating non-golang code.
Server generation #
swagger generate server -A TodoList -f ./swagger.json -C default-server.yml
For the default server generator this config file would have the following content:
layout:
application:
- name: configure
source: asset:serverConfigureapi
target: "{{ joinFilePath .Target .ServerPackage }}"
file_name: "configure_{{ .Name }}.go"
skip_exists: true
- name: main
source: asset:serverMain
target: "{{ joinFilePath .Target \"cmd\" (dasherize (pascalize .Name)) }}-server"
file_name: "main.go"
- name: embedded_spec
source: asset:swaggerJsonEmbed
target: "{{ joinFilePath .Target .ServerPackage }}"
file_name: "embedded_spec.go"
- name: server
source: asset:serverServer
target: "{{ joinFilePath .Target .ServerPackage }}"
file_name: "server.go"
- name: builder
source: asset:serverBuilder
target: "{{ joinFilePath .Target .ServerPackage .Package }}"
file_name: "{{ snakize (pascalize .Name) }}_api.go"
- name: doc
source: asset:serverDoc
target: "{{ joinFilePath .Target .ServerPackage }}"
file_name: "doc.go"
models:
- name: definition
source: asset:model
target: "{{ joinFilePath .Target .ModelPackage }}"
file_name: "{{ (snakize (pascalize .Name)) }}.go"
operations:
- name: parameters
source: asset:serverParameter
target: "{{ if gt (len .Tags) 0 }}{{ joinFilePath .Target .ServerPackage .APIPackage .Package }}{{ else }}{{ joinFilePath .Target .ServerPackage .Package }}{{ end }}"
file_name: "{{ (snakize (pascalize .Name)) }}_parameters.go"
- name: responses
source: asset:serverResponses
target: "{{ if gt (len .Tags) 0 }}{{ joinFilePath .Target .ServerPackage .APIPackage .Package }}{{ else }}{{ joinFilePath .Target .ServerPackage .Package }}{{ end }}"
file_name: "{{ (snakize (pascalize .Name)) }}_responses.go"
- name: handler
source: asset:serverOperation
target: "{{ if gt (len .Tags) 0 }}{{ joinFilePath .Target .ServerPackage .APIPackage .Package }}{{ else }}{{ joinFilePath .Target .ServerPackage .Package }}{{ end }}"
file_name: "{{ (snakize (pascalize .Name)) }}.go"
operation_groups:
Client generation #
swagger generate client -A TodoList -f ./swagger.json -C default-client.yml
For the default client generator this config file would have the following content.
layout:
application:
- name: facade
source: asset:clientFacade
target: "{{ joinFilePath .Target .ClientPackage }}"
file_name: "{{ .Name }}_client.go"
models:
- name: definition
source: asset:model
target: "{{ joinFilePath .Target .ModelPackage }}"
file_name: "{{ (snakize (pascalize .Name)) }}.go"
operations:
- name: parameters
source: asset:clientParameter
target: "{{ joinFilePath .Target .ClientPackage .Package }}"
file_name: "{{ (snakize (pascalize .Name)) }}_parameters.go"
- name: responses
source: asset:clientResponse
target: "{{ joinFilePath .Target .ClientPackage .Package }}"
file_name: "{{ (snakize (pascalize .Name)) }}_responses.go"
operation_groups:
- name: client
source: asset:clientClient
target: "{{ joinFilePath .Target .ClientPackage .Name }}"
file_name: "{{ (snakize (pascalize .Name)) }}_client.go"