-
Couldn't load subscription status.
- Fork 6k
issue#2359: added README document generation for Go #2608
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 1 commit
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 |
|---|---|---|
|
|
@@ -19,6 +19,8 @@ public class GoClientCodegen extends DefaultCodegen implements CodegenConfig { | |
|
|
||
| protected String packageName = "swagger"; | ||
| protected String packageVersion = "1.0.0"; | ||
| protected String apiDocPath = "docs/"; | ||
| protected String modelDocPath = "docs/"; | ||
|
|
||
| public CodegenType getTag() { | ||
| return CodegenType.CLIENT; | ||
|
|
@@ -37,6 +39,10 @@ public GoClientCodegen() { | |
| outputFolder = "generated-code/go"; | ||
| modelTemplateFiles.put("model.mustache", ".go"); | ||
| apiTemplateFiles.put("api.mustache", ".go"); | ||
|
|
||
| modelDocTemplateFiles.put("model_doc.mustache", ".md"); | ||
| apiDocTemplateFiles.put("api_doc.mustache", ".md"); | ||
|
|
||
| templateDir = "go"; | ||
|
|
||
| setReservedWordsLowerCase( | ||
|
|
@@ -126,6 +132,9 @@ public void processOpts() { | |
|
|
||
| additionalProperties.put(CodegenConstants.PACKAGE_NAME, packageName); | ||
| additionalProperties.put(CodegenConstants.PACKAGE_VERSION, packageVersion); | ||
|
|
||
| additionalProperties.put("apiDocPath", apiDocPath); | ||
| additionalProperties.put("modelDocPath", modelDocPath); | ||
|
|
||
| modelPackage = packageName; | ||
| apiPackage = packageName; | ||
|
|
@@ -262,6 +271,30 @@ public void postProcessParameter(CodegenParameter parameter){ | |
| } | ||
|
|
||
|
|
||
| @Override | ||
| public String apiDocFileFolder() { | ||
| return (outputFolder + "/" + apiDocPath).replace('/', File.separatorChar); | ||
| } | ||
|
|
||
| @Override | ||
| public String modelDocFileFolder() { | ||
| return (outputFolder + "/" + modelDocPath).replace('/', File.separatorChar); | ||
| } | ||
|
|
||
| @Override | ||
| public String toModelDocFilename(String name) { | ||
| //unable to use model file name because the mustache template does not have the model file name variable (python has the same issue) | ||
| //return toModelFilename(name); | ||
| return toModelName(name); | ||
| } | ||
|
|
||
| @Override | ||
| public String toApiDocFilename(String name) { | ||
| //unable to use api file name because the mustache template does not have the api file name variable | ||
|
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 this comment can be removed. |
||
| //return toApiFilename(name); | ||
| return toApiName(name); | ||
| } | ||
|
|
||
| @Override | ||
| public String getTypeDeclaration(Property p) { | ||
| if(p instanceof ArrayProperty) { | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,12 +1,63 @@ | ||
| # Go API client for {{packageName}} | ||
|
|
||
| {{#appDescription}} | ||
| {{{appDescription}}} | ||
| {{/appDescription}} | ||
|
|
||
| ## Overview | ||
| This API client was generated by the [swagger-codegen](https://github.com/swagger-api/swagger-codegen) project. By using the [swagger-spec](https://github.com/swagger-api/swagger-spec) from a remote server, you can easily generate an API client. | ||
|
|
||
| - API version: {{appVersion}} | ||
| - Package version: {{artifactVersion}} | ||
|
||
| - Build date: {{generatedDate}} | ||
| - Build package: {{generatorClass}} | ||
| {{#infoUrl}} | ||
| For more information, please visit [{{{infoUrl}}}]({{{infoUrl}}}) | ||
| {{/infoUrl}} | ||
|
|
||
| ## Installation | ||
| Put the package under your project folder and add the following in import: | ||
| ``` | ||
| "./{{packageName}}" | ||
| ``` | ||
|
|
||
| ## Documentation for API Endpoints | ||
|
|
||
| All URIs are relative to *{{basePath}}* | ||
|
|
||
| Class | Method | HTTP request | Description | ||
| ------------ | ------------- | ------------- | ------------- | ||
| {{#apiInfo}}{{#apis}}{{#operations}}{{#operation}}*{{classname}}* | [**{{operationId}}**]({{apiDocPath}}{{classname}}.md#{{operationIdLowerCase}}) | **{{httpMethod}}** {{path}} | {{#summary}}{{summary}}{{/summary}} | ||
| {{/operation}}{{/operations}}{{/apis}}{{/apiInfo}} | ||
|
|
||
| ## Documentation For Models | ||
|
|
||
| {{#models}}{{#model}} - [{{{classname}}}]({{modelDocPath}}{{{classname}}}.md) | ||
| {{/model}}{{/models}} | ||
|
|
||
| ## Documentation For Authorization | ||
|
|
||
| {{^authMethods}} All endpoints do not require authorization. | ||
| {{/authMethods}}{{#authMethods}}{{#last}} Authentication schemes defined for the API:{{/last}}{{/authMethods}} | ||
| {{#authMethods}}## {{{name}}} | ||
|
|
||
| {{#isApiKey}}- **Type**: API key | ||
| - **API key parameter name**: {{{keyParamName}}} | ||
| - **Location**: {{#isKeyInQuery}}URL query string{{/isKeyInQuery}}{{#isKeyInHeader}}HTTP header{{/isKeyInHeader}} | ||
| {{/isApiKey}} | ||
| {{#isBasic}}- **Type**: HTTP basic authentication | ||
| {{/isBasic}} | ||
| {{#isOAuth}}- **Type**: OAuth | ||
| - **Flow**: {{{flow}}} | ||
| - **Authorizatoin URL**: {{{authorizationUrl}}} | ||
| - **Scopes**: {{^scopes}}N/A{{/scopes}} | ||
| {{#scopes}} - **{{{scope}}}**: {{{description}}} | ||
| {{/scopes}} | ||
| {{/isOAuth}} | ||
|
|
||
| {{/authMethods}} | ||
|
|
||
| ## Author | ||
|
|
||
| {{#apiInfo}}{{#apis}}{{^hasMore}}{{infoEmail}} | ||
| {{/hasMore}}{{/apis}}{{/apiInfo}} | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,44 @@ | ||
| # {{invokerPackage}}\{{classname}}{{#description}} | ||
| {{description}}{{/description}} | ||
|
|
||
| All URIs are relative to *{{basePath}}* | ||
|
|
||
| Method | HTTP request | Description | ||
| ------------- | ------------- | ------------- | ||
| {{#operations}}{{#operation}}[**{{operationId}}**]({{classname}}.md#{{operationId}}) | **{{httpMethod}}** {{path}} | {{#summary}}{{summary}}{{/summary}} | ||
| {{/operation}}{{/operations}} | ||
|
|
||
| {{#operations}} | ||
| {{#operation}} | ||
| # **{{{operationId}}}** | ||
| > {{#returnType}}{{{returnType}}} {{/returnType}}{{{operationId}}}({{#allParams}}${{paramName}}{{#hasMore}}, {{/hasMore}}{{/allParams}}) | ||
|
|
||
| {{{summary}}}{{#notes}} | ||
|
|
||
| {{{notes}}}{{/notes}} | ||
|
|
||
|
|
||
| ### Parameters | ||
| {{^allParams}}This endpoint does not need any parameter.{{/allParams}}{{#allParams}}{{#-last}} | ||
| Name | Type | Description | Notes | ||
| ------------- | ------------- | ------------- | -------------{{/-last}}{{/allParams}} | ||
| {{#allParams}} **{{paramName}}** | {{#isFile}}**{{dataType}}**{{/isFile}}{{#isPrimitiveType}}**{{dataType}}**{{/isPrimitiveType}}{{^isPrimitiveType}}{{^isFile}}[**{{dataType}}**]({{baseType}}.md){{/isFile}}{{/isPrimitiveType}}| {{description}} | {{^required}}[optional] {{/required}}{{#defaultValue}}[default to {{defaultValue}}]{{/defaultValue}} | ||
| {{/allParams}} | ||
|
|
||
| ### Return type | ||
|
|
||
| {{#returnType}}{{#returnTypeIsPrimitive}}**{{{returnType}}}**{{/returnTypeIsPrimitive}}{{^returnTypeIsPrimitive}}[**{{{returnType}}}**]({{returnBaseType}}.md){{/returnTypeIsPrimitive}}{{/returnType}}{{^returnType}}void (empty response body){{/returnType}} | ||
|
|
||
| ### Authorization | ||
|
|
||
| {{^authMethods}}No authorization required{{/authMethods}}{{#authMethods}}[{{{name}}}](../README.md#{{{name}}}){{^-last}}, {{/-last}}{{/authMethods}} | ||
|
|
||
| ### HTTP reuqest headers | ||
|
|
||
| - **Content-Type**: {{#consumes}}{{mediaType}}{{#hasMore}}, {{/hasMore}}{{/consumes}}{{^consumes}}Not defined{{/consumes}} | ||
| - **Accept**: {{#produces}}{{mediaType}}{{#hasMore}}, {{/hasMore}}{{/produces}}{{^produces}}Not defined{{/produces}} | ||
|
|
||
| [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) | ||
|
|
||
| {{/operation}} | ||
| {{/operations}} |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| {{#models}}{{#model}}# {{classname}} | ||
|
|
||
| ## Properties | ||
| Name | Type | Description | Notes | ||
| ------------ | ------------- | ------------- | ------------- | ||
| {{#vars}}**{{name}}** | {{#isPrimitiveType}}**{{datatype}}**{{/isPrimitiveType}}{{^isPrimitiveType}}[**{{datatype}}**]({{complexType}}.md){{/isPrimitiveType}} | {{description}} | {{^required}}[optional] {{/required}}{{#readOnly}}[readonly] {{/readOnly}}{{#defaultValue}}[default to {{{.}}}]{{/defaultValue}} | ||
| {{/vars}} | ||
|
|
||
| [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
|
||
| {{/model}}{{/models}} |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,12 +1,79 @@ | ||
| # Go API client for swagger | ||
|
|
||
| This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters. | ||
|
|
||
| ## Overview | ||
| This API client was generated by the [swagger-codegen](https://github.com/swagger-api/swagger-codegen) project. By using the [swagger-spec](https://github.com/swagger-api/swagger-spec) from a remote server, you can easily generate an API client. | ||
|
|
||
| - API version: 1.0.0 | ||
| - Package version: | ||
| - Build date: 2016-04-14T14:05:06.510-07:00 | ||
| - Build package: class io.swagger.codegen.languages.GoClientCodegen | ||
|
|
||
| ## Installation | ||
| Put the package under your project folder and add the following in import: | ||
| ``` | ||
| "./swagger" | ||
| ``` | ||
|
|
||
| ## Documentation for API Endpoints | ||
|
|
||
| All URIs are relative to *http://petstore.swagger.io/v2* | ||
|
|
||
| Class | Method | HTTP request | Description | ||
| ------------ | ------------- | ------------- | ------------- | ||
| *PetApi* | [**AddPet**](docs/PetApi.md#addpet) | **Post** /pet | Add a new pet to the store | ||
| *PetApi* | [**DeletePet**](docs/PetApi.md#deletepet) | **Delete** /pet/{petId} | Deletes a pet | ||
| *PetApi* | [**FindPetsByStatus**](docs/PetApi.md#findpetsbystatus) | **Get** /pet/findByStatus | Finds Pets by status | ||
| *PetApi* | [**FindPetsByTags**](docs/PetApi.md#findpetsbytags) | **Get** /pet/findByTags | Finds Pets by tags | ||
| *PetApi* | [**GetPetById**](docs/PetApi.md#getpetbyid) | **Get** /pet/{petId} | Find pet by ID | ||
| *PetApi* | [**UpdatePet**](docs/PetApi.md#updatepet) | **Put** /pet | Update an existing pet | ||
| *PetApi* | [**UpdatePetWithForm**](docs/PetApi.md#updatepetwithform) | **Post** /pet/{petId} | Updates a pet in the store with form data | ||
| *PetApi* | [**UploadFile**](docs/PetApi.md#uploadfile) | **Post** /pet/{petId}/uploadImage | uploads an image | ||
| *StoreApi* | [**DeleteOrder**](docs/StoreApi.md#deleteorder) | **Delete** /store/order/{orderId} | Delete purchase order by ID | ||
| *StoreApi* | [**GetInventory**](docs/StoreApi.md#getinventory) | **Get** /store/inventory | Returns pet inventories by status | ||
| *StoreApi* | [**GetOrderById**](docs/StoreApi.md#getorderbyid) | **Get** /store/order/{orderId} | Find purchase order by ID | ||
| *StoreApi* | [**PlaceOrder**](docs/StoreApi.md#placeorder) | **Post** /store/order | Place an order for a pet | ||
| *UserApi* | [**CreateUser**](docs/UserApi.md#createuser) | **Post** /user | Create user | ||
| *UserApi* | [**CreateUsersWithArrayInput**](docs/UserApi.md#createuserswitharrayinput) | **Post** /user/createWithArray | Creates list of users with given input array | ||
| *UserApi* | [**CreateUsersWithListInput**](docs/UserApi.md#createuserswithlistinput) | **Post** /user/createWithList | Creates list of users with given input array | ||
| *UserApi* | [**DeleteUser**](docs/UserApi.md#deleteuser) | **Delete** /user/{username} | Delete user | ||
| *UserApi* | [**GetUserByName**](docs/UserApi.md#getuserbyname) | **Get** /user/{username} | Get user by user name | ||
| *UserApi* | [**LoginUser**](docs/UserApi.md#loginuser) | **Get** /user/login | Logs user into the system | ||
| *UserApi* | [**LogoutUser**](docs/UserApi.md#logoutuser) | **Get** /user/logout | Logs out current logged in user session | ||
| *UserApi* | [**UpdateUser**](docs/UserApi.md#updateuser) | **Put** /user/{username} | Updated user | ||
|
|
||
|
|
||
| ## Documentation For Models | ||
|
|
||
| - [ApiResponse](docs/ApiResponse.md) | ||
| - [Category](docs/Category.md) | ||
| - [Order](docs/Order.md) | ||
| - [Pet](docs/Pet.md) | ||
| - [Tag](docs/Tag.md) | ||
| - [User](docs/User.md) | ||
|
|
||
|
|
||
| ## Documentation For Authorization | ||
|
|
||
|
|
||
| ## petstore_auth | ||
|
|
||
| - **Type**: OAuth | ||
| - **Flow**: implicit | ||
| - **Authorizatoin URL**: http://petstore.swagger.io/api/oauth/dialog | ||
| - **Scopes**: | ||
| - **write:pets**: modify pets in your account | ||
| - **read:pets**: read your pets | ||
|
|
||
| ## api_key | ||
|
|
||
| - **Type**: API key | ||
| - **API key parameter name**: api_key | ||
| - **Location**: HTTP header | ||
|
|
||
|
|
||
| ## Author | ||
|
|
||
| [email protected] | ||
|
|
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| # ApiResponse | ||
|
|
||
| ## Properties | ||
| Name | Type | Description | Notes | ||
| ------------ | ------------- | ------------- | ------------- | ||
| **Code** | **int32** | | [optional] [default to null] | ||
| **Type_** | **string** | | [optional] [default to null] | ||
| **Message** | **string** | | [optional] [default to null] | ||
|
|
||
| [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
|
||
|
|
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| # Category | ||
|
|
||
| ## Properties | ||
| Name | Type | Description | Notes | ||
| ------------ | ------------- | ------------- | ------------- | ||
| **Id** | **int64** | | [optional] [default to null] | ||
| **Name** | **string** | | [optional] [default to null] | ||
|
|
||
| [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
|
||
|
|
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| # Order | ||
|
|
||
| ## Properties | ||
| Name | Type | Description | Notes | ||
| ------------ | ------------- | ------------- | ------------- | ||
| **Id** | **int64** | | [optional] [default to null] | ||
| **PetId** | **int64** | | [optional] [default to null] | ||
| **Quantity** | **int32** | | [optional] [default to null] | ||
| **ShipDate** | [**time.Time**](time.Time.md) | | [optional] [default to null] | ||
| **Status** | **string** | Order Status | [optional] [default to null] | ||
| **Complete** | **bool** | | [optional] [default to null] | ||
|
|
||
| [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
|
||
|
|
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| # Pet | ||
|
|
||
| ## Properties | ||
| Name | Type | Description | Notes | ||
| ------------ | ------------- | ------------- | ------------- | ||
| **Id** | **int64** | | [optional] [default to null] | ||
| **Category** | [**Category**](Category.md) | | [optional] [default to null] | ||
| **Name** | **string** | | [default to null] | ||
| **PhotoUrls** | **[]string** | | [default to null] | ||
| **Tags** | [**[]Tag**](Tag.md) | | [optional] [default to null] | ||
| **Status** | **string** | pet status in the store | [optional] [default to null] | ||
|
|
||
| [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
|
||
|
|
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.
I think this comment can be removed.