Contains a protoc plugin that generates openapi v3 documents
Forked from github.com/google/gnostic/cmd/protoc-gen-openapi
Installation:
go install github.com/kollalabs/protoc-gen-openapi@latest
Usage:
protoc sample.proto -I. --openapi_out=version=1.2.3:.
To see output during tests use log.Print*
go clean -testcache && go test
We have added some features that the Gnostic team most likely doesn't want to add :-) Some are fairly Kolla specific, sorry. We try to hide Kolla specific functionality in a way that won't trip anyone up.
- Better Enum Support
- Summary Field
- Validation (protoc-gen-validate)
- Google Field Behavior Annotations
- OAS3 header support
- Custom responses
- Resource name pattern
Enums work better by using string values of proto enums instead of ints.
Sometimes you want more control over certain properties in the OpenAPI manifest. In our
case we wanted to use the summary property on routes to look nice for generating
documentation from the OpenAPI manifest. Normally the summary comes simply from the
name of the route. We added a feature that parses the comment over the proto service
method and looks for a pipe character ("|") and if it sees it, it will take anything to
the left of it and put it in the summary field, and anything to the right of it will
be the description. If no pipe is found it puts the whole comment in the description
like normal. From /examples/tests/summary/message.proto:
service Messaging {
// Update Message Summary | This function updates a message.
rpc UpdateMessage(Message) returns(Message) {
option(google.api.http) = {
patch: "/v1/messages/{message_id}"
body: "text"
};
}
}It generates the following OpenAPI:
#...
paths:
/v1/messages/{message_id}:
patch:
tags:
- Messaging
summary: Update Message Summary # Look at this beautiful summary...
description: This function updates a message.
#...We added partial support for protoc-gen-validate annotations
OpenAPI spec allows for a small handful of input validation configurations.
Proto has an awesome plugin called protoc-gen-validate for generating validation code in
Go, Java, C++, etc. We took those same annotations and added support in this project
for them.
Usage: add validate=true to protoc command.
protoc sample.proto -I. --openapi_out=version=1.2.3,validate=true:.
message Message {
string message_id = 1;
string text = 2 [(validate.rules)= {
string: {
uri:true,
max_len:45,
min_len:1
}
}];
int64 mynum = 3 [(validate.rules).int64 = {gte:1, lte:30}];
}
outputs:
components:
schemas:
Message:
properties:
message_id:
type: string
text:
maxLength: 45
minLength: 1
type: string
format: uri
mynum:
maximum: !!float 30
minimum: !!float 1
type: integer
format: int64
String
- uri
- uuid
- ipv4
- ipv6
- max_len
- min_len
Numeric (all int, uint, sint, fixed, float and double types)
- const
- gt, gte (
minimum,exclusiveMinimum) - lt, lte (
maximum,exclusiveMaximum)
Enum
- const
- in
- not_in
Repeated
- min_items
- max_items
- items (scalar item rules)
Adding more can easily be done in the function addValidationRules in /generator/validate.go
(google.api.field_behavior) = REQUIREDwill add the field to the required list in the openAPI schema(google.api.field_behavior) = OUTPUT_ONLYwill add thereadOnlyproperty to the field(google.api.field_behavior) = INPUT_ONLYwill add thewriteOnlyproperty to the field- TODO:
(google.api.field_behavior) = IMMUTABLEwill add thex-createOnlyproperty to the field (not supported by openapi yet)
A build is run with --openapi_opt=build_tag=<tag>, and services and methods
declare the builds they take part in through (openapi.service_params) /
(openapi.method_params) build_tags. Three tags have meaning:
public_docs: a build run with this tag generates only the methods that carry it. Every other method is left out. Use it for a service whose public spec is an allow-list.postman: a service'sservice_paramsheaders are only added to builds run with a tag the service lists, sobuild_tags: ["postman"]adds them to the Postman build alone.internal_docs: a method that carries it is generated only by a build run withbuild_tag=internal_docs. It is left out of every other build — including one run with no build tag at all, which is how a public spec is normally produced. Use it for an endpoint that exists in the API but must not appear in published documentation.
A method with no build tags is generated by every build except public_docs.
Add header parameters with openapi.file_params, openapi.service_params or openapi.method_params
(see openapi/annotations.proto). A method header replaces a service or file header
with the same name.
Options only apply when their build_tags (if any) include the build_tag plugin option.
A method's build_tags also decide whether the method is generated (see Build tags).
Add responses to every operation in a file, service or method with custom_responses, keyed by status code.
A response replaces a generated one with the same code, such as the google.rpc.Status default response.
Build tags apply as for headers.
option (openapi.service_params) = {
custom_responses: {
key: "403"
value: {
description: "Forbidden"
message_ref: "my.pkg.v1.ErrorResponse"
}
}
};name fields of messages with a google.api.resource pattern get a regex pattern, matching each variable
with resource_id_pattern (default [a-z2-7]{26}). Set resource_id_pattern= to omit it.