Skip to content

πŸƒ bazel rules for generating code from openapi specifications

License

Notifications You must be signed in to change notification settings

mcohen-brex/rules_openapi

This branch is 27 commits behind chenrui333/rules_openapi:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

f156f22 Β· Jan 24, 2021
Nov 26, 2019
Jan 24, 2021
Oct 26, 2020
Nov 24, 2019
Sep 1, 2020
Oct 26, 2020
Nov 27, 2020
Nov 24, 2019
Jun 7, 2019
Nov 24, 2020
Aug 31, 2020
Oct 26, 2020
Nov 8, 2019
Oct 26, 2020

Repository files navigation

OpenAPI rules for Bazel

Workflow Status

Bazel rules for generating sources and libraries from openapi schemas.

Rules

Getting started

To use the OpenAPI rules, add the following to your projects WORKSPACE file

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

RULES_OPEN_API_VERSION = "f0f42afb855139ad5346659d089c32fb756d068e"
RULES_OPEN_API_SHA256 = "9570186948f1f65c61d2c6c6006840ea70888b270f028bbd0eb736caae1cd9df"

http_archive(
    name = "io_bazel_rules_openapi",
    strip_prefix = "rules_openapi-%s" % RULES_OPEN_API_VERSION,
    url = "https://github.com/meetup/rules_openapi/archive/%s.tar.gz" % RULES_OPEN_API_VERSION,
    sha256 = RULES_OPEN_API_SHA256
)

load("@io_bazel_rules_openapi//openapi:openapi.bzl", "openapi_repositories")
openapi_repositories()

Then in your BUILD file, just add the following so the rules will be available:

load("@io_bazel_rules_openapi//openapi:openapi.bzl", "openapi_gen")

Bazel compatibility matrix

Bazel version rules_openapi commit sha256 hash
1.2.1 32527fd4f9b4a50199b3905d34027b1eaf61b88a 700feae8dda1a6400672c77e0b2bc2d5db9a21b902c20b342d65bb314af953f3
2.0.0 c6e77e314df7ced9652bc68f3ee32d5425160716 ba55fbd75a50eb8e2fd08d4dc72a8f32858bc14db184677cee969453d72d7c67
2.1.0 c289e0b4e127924e2a18bc8f345b6cf1945735de f88a6627533d2974385b36ce1f3606795cd08070e28e5e44074ed2101afdd348
2.1.1 4e35a7b968908213e3c6eedc4435d140dbb577b3 d1af6e9bd23b24a07f059b1a97f0bc305d7cf74a2965f06fc11c182d568a0e1c
2.2.0 08e2472385e8929a21bf8cd747f26e3b933dbd2f 9dfeeb8cef2347b5ba3d59b7948fd26518eefc537ca95d4846d6c124e38d294a
3.0.0 2528ecbfe628211de87e1924908350014fb0d03e d4c5b924f0a2a7d844650ff3b76c0475f370e5ceb5b1811665144102e7296383
3.6.0 112663e9935f4711c7c14c3357f8e4547d43cd8c cf32217fda600e49848cd9b496a2e77e50d695230f437f8d5a2f0f2f5d437338
3.7.0 f0f42afb855139ad5346659d089c32fb756d068e 9570186948f1f65c61d2c6c6006840ea70888b270f028bbd0eb736caae1cd9df

openapi_gen

openapi_gen(name, spec, api_package, model_package, invoker_package)

This generates a .srcjar archive containing generated source files from a given openapi specification.

These rules rely on swagger-codegen which defines many configuration options. Not all configuration options are implemented in these rules yet but contributions are welcome. You can also request features here

Attributes
name Name, required

A unique name for this rule.

spec String, required

Path to .yaml or .json file containing openapi specification

language String, required

Name of language to generate.

If you wish to use a custom language, you'll need to create a jar containing your custom codegen module, then use deps to add the custom codegen module to the classpath.

Note, not all swagger codegen provided languages generate the exact same source given the exact same set of arguments. Be aware of this in cases where you expect bazel not to perform a previous executed action for the same sources.

api_package String, optional

package for api.

module_package String, optional

package for models.

invoker_package String, optional

package for invoker.

additional_properties Dict of strings, optional

Additional properties that can be referenced by the codegen templates. This allows setting parameters that you'd normally put in config.json, for example the Java library template:

    language = "java",
    additional_properties = {
        "library": "feign",
    },
system_properties Dict of strings, optional

System properties to pass to swagger-codegen. This allows setting parameters that you'd normally set with -D, for example to disable test generation:

    language = "java",
    system_properties = {
        "apiTests": "false",
        "modelTests": "false",
    },
type_mappings Dict of strings, optional

Allows control of the types used in generated code with swagger-codegen's --type-mappings parameter. For example to use Java 8's LocalDateTime class:

    language = "java",
    additional_properties = {
        "dateLibrary": "java8",
    },
    type_mappings = {
        "OffsetDateTime": "java.time.LocalDateTime",
    },

An example of what a custom language may look like

java_import(
  name = "custom-scala-codegen",
  jars = ["custom-scala-codegen.jar"]
)

openapi_gen(
  name = "petstore-client-src",
  language = "custom-scala",
  spec = "petstore-spec.json",
  api_package = "com.example.api",
  model_package = "com.example.model",
  invoker_package = "com.example",
  deps = [
    ":custom-scala-codegen"
  ]
)

scala_library(
  name = "petstore-client",
  srcs = [":petstore-client-src"]
)

About

πŸƒ bazel rules for generating code from openapi specifications

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Starlark 78.7%
  • Shell 20.1%
  • Makefile 1.2%