types.go 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361
  1. package genopenapi
  2. import (
  3. "bytes"
  4. "encoding/json"
  5. "fmt"
  6. "github.com/grpc-ecosystem/grpc-gateway/v2/internal/descriptor"
  7. "gopkg.in/yaml.v3"
  8. )
  9. type param struct {
  10. *descriptor.File
  11. reg *descriptor.Registry
  12. }
  13. // http://swagger.io/specification/#infoObject
  14. type openapiInfoObject struct {
  15. Title string `json:"title" yaml:"title"`
  16. Description string `json:"description,omitempty" yaml:"description,omitempty"`
  17. TermsOfService string `json:"termsOfService,omitempty" yaml:"termsOfService,omitempty"`
  18. Version string `json:"version" yaml:"version"`
  19. Contact *openapiContactObject `json:"contact,omitempty" yaml:"contact,omitempty"`
  20. License *openapiLicenseObject `json:"license,omitempty" yaml:"license,omitempty"`
  21. extensions []extension `json:"-" yaml:"-"`
  22. }
  23. // https://swagger.io/specification/#tagObject
  24. type openapiTagObject struct {
  25. Name string `json:"name" yaml:"name"`
  26. Description string `json:"description,omitempty" yaml:"description,omitempty"`
  27. ExternalDocs *openapiExternalDocumentationObject `json:"externalDocs,omitempty" yaml:"externalDocs,omitempty"`
  28. extensions []extension `json:"-" yaml:"-"`
  29. }
  30. // http://swagger.io/specification/#contactObject
  31. type openapiContactObject struct {
  32. Name string `json:"name,omitempty" yaml:"name,omitempty"`
  33. URL string `json:"url,omitempty" yaml:"url,omitempty"`
  34. Email string `json:"email,omitempty" yaml:"email,omitempty"`
  35. }
  36. // http://swagger.io/specification/#licenseObject
  37. type openapiLicenseObject struct {
  38. Name string `json:"name,omitempty" yaml:"name,omitempty"`
  39. URL string `json:"url,omitempty" yaml:"url,omitempty"`
  40. }
  41. // http://swagger.io/specification/#externalDocumentationObject
  42. type openapiExternalDocumentationObject struct {
  43. Description string `json:"description,omitempty" yaml:"description,omitempty"`
  44. URL string `json:"url,omitempty" yaml:"url,omitempty"`
  45. }
  46. type extension struct {
  47. key string `json:"-" yaml:"-"`
  48. value json.RawMessage `json:"-" yaml:"-"`
  49. }
  50. // http://swagger.io/specification/#swaggerObject
  51. type openapiSwaggerObject struct {
  52. Swagger string `json:"swagger" yaml:"swagger"`
  53. Info openapiInfoObject `json:"info" yaml:"info"`
  54. Tags []openapiTagObject `json:"tags,omitempty" yaml:"tags,omitempty"`
  55. Host string `json:"host,omitempty" yaml:"host,omitempty"`
  56. BasePath string `json:"basePath,omitempty" yaml:"basePath,omitempty"`
  57. Schemes []string `json:"schemes,omitempty" yaml:"schemes,omitempty"`
  58. Consumes []string `json:"consumes" yaml:"consumes"`
  59. Produces []string `json:"produces" yaml:"produces"`
  60. Paths openapiPathsObject `json:"paths" yaml:"paths"`
  61. Definitions openapiDefinitionsObject `json:"definitions" yaml:"definitions"`
  62. SecurityDefinitions openapiSecurityDefinitionsObject `json:"securityDefinitions,omitempty" yaml:"securityDefinitions,omitempty"`
  63. Security []openapiSecurityRequirementObject `json:"security,omitempty" yaml:"security,omitempty"`
  64. ExternalDocs *openapiExternalDocumentationObject `json:"externalDocs,omitempty" yaml:"externalDocs,omitempty"`
  65. extensions []extension `json:"-" yaml:"-"`
  66. }
  67. // http://swagger.io/specification/#securityDefinitionsObject
  68. type openapiSecurityDefinitionsObject map[string]openapiSecuritySchemeObject
  69. // http://swagger.io/specification/#securitySchemeObject
  70. type openapiSecuritySchemeObject struct {
  71. Type string `json:"type" yaml:"type"`
  72. Description string `json:"description,omitempty" yaml:"description,omitempty"`
  73. Name string `json:"name,omitempty" yaml:"name,omitempty"`
  74. In string `json:"in,omitempty" yaml:"in,omitempty"`
  75. Flow string `json:"flow,omitempty" yaml:"flow,omitempty"`
  76. AuthorizationURL string `json:"authorizationUrl,omitempty" yaml:"authorizationUrl,omitempty"`
  77. TokenURL string `json:"tokenUrl,omitempty" yaml:"tokenUrl,omitempty"`
  78. Scopes openapiScopesObject `json:"scopes,omitempty" yaml:"scopes,omitempty"`
  79. extensions []extension `json:"-" yaml:"-"`
  80. }
  81. // http://swagger.io/specification/#scopesObject
  82. type openapiScopesObject map[string]string
  83. // http://swagger.io/specification/#securityRequirementObject
  84. type openapiSecurityRequirementObject map[string][]string
  85. // http://swagger.io/specification/#pathsObject
  86. type openapiPathsObject []pathData
  87. type pathData struct {
  88. Path string
  89. PathItemObject openapiPathItemObject
  90. }
  91. // http://swagger.io/specification/#pathItemObject
  92. type openapiPathItemObject struct {
  93. Get *openapiOperationObject `json:"get,omitempty" yaml:"get,omitempty"`
  94. Delete *openapiOperationObject `json:"delete,omitempty" yaml:"delete,omitempty"`
  95. Post *openapiOperationObject `json:"post,omitempty" yaml:"post,omitempty"`
  96. Put *openapiOperationObject `json:"put,omitempty" yaml:"put,omitempty"`
  97. Patch *openapiOperationObject `json:"patch,omitempty" yaml:"patch,omitempty"`
  98. Head *openapiOperationObject `json:"head,omitempty" yaml:"head,omitempty"`
  99. Options *openapiOperationObject `json:"options,omitempty" yaml:"options,omitempty"`
  100. // While TRACE is supported in OpenAPI v3, it is not supported in OpenAPI v2
  101. // Trace *openapiOperationObject `json:"trace,omitempty" yaml:"trace,omitempty"`
  102. }
  103. // http://swagger.io/specification/#operationObject
  104. type openapiOperationObject struct {
  105. Summary string `json:"summary,omitempty" yaml:"summary,omitempty"`
  106. Description string `json:"description,omitempty" yaml:"description,omitempty"`
  107. OperationID string `json:"operationId" yaml:"operationId"`
  108. Responses openapiResponsesObject `json:"responses" yaml:"responses"`
  109. Parameters openapiParametersObject `json:"parameters,omitempty" yaml:"parameters,omitempty"`
  110. Tags []string `json:"tags,omitempty" yaml:"tags,omitempty"`
  111. Deprecated bool `json:"deprecated,omitempty" yaml:"deprecated,omitempty"`
  112. Consumes []string `json:"consumes,omitempty" yaml:"consumes,omitempty"`
  113. Produces []string `json:"produces,omitempty" yaml:"produces,omitempty"`
  114. Security *[]openapiSecurityRequirementObject `json:"security,omitempty" yaml:"security,omitempty"`
  115. ExternalDocs *openapiExternalDocumentationObject `json:"externalDocs,omitempty" yaml:"externalDocs,omitempty"`
  116. extensions []extension `json:"-" yaml:"-"`
  117. }
  118. type openapiParametersObject []openapiParameterObject
  119. // http://swagger.io/specification/#parameterObject
  120. type openapiParameterObject struct {
  121. Name string `json:"name" yaml:"name"`
  122. Description string `json:"description,omitempty" yaml:"description,omitempty"`
  123. In string `json:"in,omitempty" yaml:"in,omitempty"`
  124. Required bool `json:"required" yaml:"required"`
  125. Type string `json:"type,omitempty" yaml:"type,omitempty"`
  126. Format string `json:"format,omitempty" yaml:"format,omitempty"`
  127. UniqueItems bool `json:"uniqueItems,omitempty" yaml:"uniqueItems,omitempty"`
  128. Items *openapiItemsObject `json:"items,omitempty" yaml:"items,omitempty"`
  129. Enum interface{} `json:"enum,omitempty" yaml:"enum,omitempty"`
  130. CollectionFormat string `json:"collectionFormat,omitempty" yaml:"collectionFormat,omitempty"`
  131. Default interface{} `json:"default,omitempty" yaml:"default,omitempty"`
  132. MinItems *int `json:"minItems,omitempty" yaml:"minItems,omitempty"`
  133. Pattern string `json:"pattern,omitempty" yaml:"pattern,omitempty"`
  134. Example string `json:"example,omitempty" yaml:"example,omitempty"`
  135. // Or you can explicitly refer to another type. If this is defined all
  136. // other fields should be empty
  137. Schema *openapiSchemaObject `json:"schema,omitempty" yaml:"schema,omitempty"`
  138. extensions []extension
  139. }
  140. // core part of schema, which is common to itemsObject and schemaObject.
  141. // http://swagger.io/specification/v2/#itemsObject
  142. // The OAS3 spec (https://swagger.io/specification/#schemaObject) defines the
  143. // `nullable` field as part of a Schema Object. This behavior has been
  144. // "back-ported" to OAS2 as the Specification Extension `x-nullable`, and is
  145. // supported by generation tools such as swagger-codegen and go-swagger.
  146. // For protoc-gen-openapiv3, we'd want to add `nullable` instead.
  147. type schemaCore struct {
  148. Type string `json:"type,omitempty" yaml:"type,omitempty"`
  149. Format string `json:"format,omitempty" yaml:"format,omitempty"`
  150. Ref string `json:"$ref,omitempty" yaml:"$ref,omitempty"`
  151. XNullable bool `json:"x-nullable,omitempty" yaml:"x-nullable,omitempty"`
  152. Example RawExample `json:"example,omitempty" yaml:"example,omitempty"`
  153. Items *openapiItemsObject `json:"items,omitempty" yaml:"items,omitempty"`
  154. // If the item is an enumeration include a list of all the *NAMES* of the
  155. // enum values. I'm not sure how well this will work but assuming all enums
  156. // start from 0 index it will be great. I don't think that is a good assumption.
  157. Enum interface{} `json:"enum,omitempty" yaml:"enum,omitempty"`
  158. Default interface{} `json:"default,omitempty" yaml:"default,omitempty"`
  159. }
  160. type allOfEntry struct {
  161. Ref string `json:"$ref,omitempty" yaml:"$ref,omitempty"`
  162. }
  163. type RawExample json.RawMessage
  164. func (m RawExample) MarshalJSON() ([]byte, error) {
  165. return (json.RawMessage)(m).MarshalJSON()
  166. }
  167. func (m *RawExample) UnmarshalJSON(data []byte) error {
  168. return (*json.RawMessage)(m).UnmarshalJSON(data)
  169. }
  170. // MarshalYAML implements yaml.Marshaler interface.
  171. //
  172. // It converts RawExample to one of yaml-supported types and returns it.
  173. //
  174. // From yaml.Marshaler docs: The Marshaler interface may be implemented
  175. // by types to customize their behavior when being marshaled into a YAML
  176. // document. The returned value is marshaled in place of the original
  177. // value implementing Marshaler.
  178. func (e RawExample) MarshalYAML() (interface{}, error) {
  179. // From docs, json.Unmarshal will store one of next types to data:
  180. // - bool, for JSON booleans;
  181. // - float64, for JSON numbers;
  182. // - string, for JSON strings;
  183. // - []interface{}, for JSON arrays;
  184. // - map[string]interface{}, for JSON objects;
  185. // - nil for JSON null.
  186. var data interface{}
  187. if err := json.Unmarshal(e, &data); err != nil {
  188. return nil, err
  189. }
  190. return data, nil
  191. }
  192. func (s *schemaCore) setRefFromFQN(ref string, reg *descriptor.Registry) error {
  193. name, ok := fullyQualifiedNameToOpenAPIName(ref, reg)
  194. if !ok {
  195. return fmt.Errorf("setRefFromFQN: can't resolve OpenAPI name from %q", ref)
  196. }
  197. s.Ref = fmt.Sprintf("#/definitions/%s", name)
  198. return nil
  199. }
  200. type openapiItemsObject openapiSchemaObject
  201. // http://swagger.io/specification/#responsesObject
  202. type openapiResponsesObject map[string]openapiResponseObject
  203. // http://swagger.io/specification/#responseObject
  204. type openapiResponseObject struct {
  205. Description string `json:"description" yaml:"description"`
  206. Schema openapiSchemaObject `json:"schema" yaml:"schema"`
  207. Examples map[string]interface{} `json:"examples,omitempty" yaml:"examples,omitempty"`
  208. Headers openapiHeadersObject `json:"headers,omitempty" yaml:"headers,omitempty"`
  209. extensions []extension `json:"-" yaml:"-"`
  210. }
  211. type openapiHeadersObject map[string]openapiHeaderObject
  212. // http://swagger.io/specification/#headerObject
  213. type openapiHeaderObject struct {
  214. Description string `json:"description,omitempty" yaml:"description,omitempty"`
  215. Type string `json:"type,omitempty" yaml:"type,omitempty"`
  216. Format string `json:"format,omitempty" yaml:"format,omitempty"`
  217. Default RawExample `json:"default,omitempty" yaml:"default,omitempty"`
  218. Pattern string `json:"pattern,omitempty" yaml:"pattern,omitempty"`
  219. }
  220. type keyVal struct {
  221. Key string
  222. Value interface{}
  223. }
  224. type openapiSchemaObjectProperties []keyVal
  225. func (p openapiSchemaObjectProperties) MarshalYAML() (interface{}, error) {
  226. n := yaml.Node{
  227. Kind: yaml.MappingNode,
  228. Content: make([]*yaml.Node, len(p)*2),
  229. }
  230. for i, v := range p {
  231. keyNode := yaml.Node{}
  232. if err := keyNode.Encode(v.Key); err != nil {
  233. return nil, err
  234. }
  235. valueNode := yaml.Node{}
  236. if err := valueNode.Encode(v.Value); err != nil {
  237. return nil, err
  238. }
  239. n.Content[i*2+0] = &keyNode
  240. n.Content[i*2+1] = &valueNode
  241. }
  242. return n, nil
  243. }
  244. func (op openapiSchemaObjectProperties) MarshalJSON() ([]byte, error) {
  245. var buf bytes.Buffer
  246. buf.WriteString("{")
  247. for i, kv := range op {
  248. if i != 0 {
  249. buf.WriteString(",")
  250. }
  251. key, err := json.Marshal(kv.Key)
  252. if err != nil {
  253. return nil, err
  254. }
  255. buf.Write(key)
  256. buf.WriteString(":")
  257. val, err := json.Marshal(kv.Value)
  258. if err != nil {
  259. return nil, err
  260. }
  261. buf.Write(val)
  262. }
  263. buf.WriteString("}")
  264. return buf.Bytes(), nil
  265. }
  266. // http://swagger.io/specification/#schemaObject
  267. type openapiSchemaObject struct {
  268. schemaCore `yaml:",inline"`
  269. // Properties can be recursively defined
  270. Properties *openapiSchemaObjectProperties `json:"properties,omitempty" yaml:"properties,omitempty"`
  271. AdditionalProperties *openapiSchemaObject `json:"additionalProperties,omitempty" yaml:"additionalProperties,omitempty"`
  272. Description string `json:"description,omitempty" yaml:"description,omitempty"`
  273. Title string `json:"title,omitempty" yaml:"title,omitempty"`
  274. ExternalDocs *openapiExternalDocumentationObject `json:"externalDocs,omitempty" yaml:"externalDocs,omitempty"`
  275. ReadOnly bool `json:"readOnly,omitempty" yaml:"readOnly,omitempty"`
  276. MultipleOf float64 `json:"multipleOf,omitempty" yaml:"multipleOf,omitempty"`
  277. Maximum float64 `json:"maximum,omitempty" yaml:"maximum,omitempty"`
  278. ExclusiveMaximum bool `json:"exclusiveMaximum,omitempty" yaml:"exclusiveMaximum,omitempty"`
  279. Minimum float64 `json:"minimum,omitempty" yaml:"minimum,omitempty"`
  280. ExclusiveMinimum bool `json:"exclusiveMinimum,omitempty" yaml:"exclusiveMinimum,omitempty"`
  281. MaxLength uint64 `json:"maxLength,omitempty" yaml:"maxLength,omitempty"`
  282. MinLength uint64 `json:"minLength,omitempty" yaml:"minLength,omitempty"`
  283. Pattern string `json:"pattern,omitempty" yaml:"pattern,omitempty"`
  284. MaxItems uint64 `json:"maxItems,omitempty" yaml:"maxItems,omitempty"`
  285. MinItems uint64 `json:"minItems,omitempty" yaml:"minItems,omitempty"`
  286. UniqueItems bool `json:"uniqueItems,omitempty" yaml:"uniqueItems,omitempty"`
  287. MaxProperties uint64 `json:"maxProperties,omitempty" yaml:"maxProperties,omitempty"`
  288. MinProperties uint64 `json:"minProperties,omitempty" yaml:"minProperties,omitempty"`
  289. Required []string `json:"required,omitempty" yaml:"required,omitempty"`
  290. extensions []extension
  291. AllOf []allOfEntry `json:"allOf,omitempty" yaml:"allOf,omitempty"`
  292. }
  293. // http://swagger.io/specification/#definitionsObject
  294. type openapiDefinitionsObject map[string]openapiSchemaObject
  295. // Internal type mapping from FQMN to descriptor.Message. Used as a set by the
  296. // findServiceMessages function.
  297. type messageMap map[string]*descriptor.Message
  298. // Internal type mapping from FQEN to descriptor.Enum. Used as a set by the
  299. // findServiceMessages function.
  300. type enumMap map[string]*descriptor.Enum
  301. // Internal type to store used references.
  302. type refMap map[string]struct{}