This library provides an object-based type system for RESTful Ruby APIs, with built-in parameter parsing, response rendering, and OpenAPI schema export.
It is inspired by apipie-rails
and graphql-ruby
.
- provide a simple, declarative way to describe API endpoints
- conveniently check request and response data against the declaration
- offer an up-to-date OpenAPI export with minimal configuration
bundle add taro
Then, if using rails, generate type files to inherit from:
bundle exec rails g taro:rails:install [ --dir app/my_types_dir ]
The core concept of Taro are type classes.
This is how type classes can be used in a Rails controller:
class BikesController < ApplicationController
# This adds an endpoint summary, description, and tags to the docs (all optional)
api 'Update a bike', desc: 'My longer text', tags: ['Bikes']
# Params can come from the path, e.g. /bike/:id)
param :id, type: 'UUID', null: false, desc: 'ID of the bike to update'
# They can also come from the query string or request body
param :bike, type: 'BikeInputType', null: false
# Return types can differ by status code and can be nested as in this case:
returns :bike, code: :ok, type: 'BikeType', desc: 'update success'
# This one is not nested:
returns code: :unprocessable_content, type: 'MyErrorType', desc: 'failure'
def update
# defined params are available as @api_params
bike = Bike.find(@api_params[:id])
success = bike.update(@api_params[:bike])
# Types can be used to render responses.
# The object
if success
render json: { bike: BikeType.render(bike) }, status: :ok
else
render json: MyErrorType.render(bike.errors.first), status: :unprocessable_entity
end
end
# Support for arrays and paginated lists is built-in.
api 'List all bikes'
returns code: :ok, array_of: 'BikeType', desc: 'list of bikes'
def index
render json: BikeType.array.render(Bike.all)
end
end
Notice the multiple roles of types: They are used to define the structure of API requests and responses, and render the response. Both the input and output of the API can be validated against the schema if desired (see below).
Here is an example of the BikeType
from that controller:
class BikeType < ObjectType
# Optional description of BikeType (for API docs and the OpenAPI export)
self.desc = 'A bike and all relevant information about it'
# Object types have fields. Each field has a name, its own type,
# and a `null:` setting to indicate if it can be nil.
# Providing a desc is optional.
field :brand, type: 'String', null: true, desc: 'The brand name'
# Fields can reference other types and arrays of values
field :users, array_of: 'UserType', null: false
# Pagination is built-in for big lists
field :parts, page_of: 'PartType', null: false
# Custom methods can be chosen to resolve fields
field :has_brand, type: 'Boolean', null: false, method: :brand?
# Field resolvers can also be implemented or overridden on the type.
# The object passed in to `BikeType.render` is available as `object`.
field :fancy_info, type: 'String', null: false
def fancy_info
"A bike named #{object.name} with #{object.parts.count} parts."
end
end
Note the use of BikeInputType
in the param
declaration above? It could look like so:
class BikeInputType < InputType
field :brand, type: 'String', null: true, desc: 'The brand name'
field :wheels, type: 'Integer', null: false, default: 2
end
The usage of such dedicated InputTypes is optional. Object types can also be used to define accepted parameters, or parts of them, depending on what you want to allow API clients to send.
Requests are automatically validated to match the declared input schema, unless you disable the automatic parsing of parameters into the @api_params
hash:
Taro.config.parse_params = false
Responses are automatically validated to use the correct type for rendering, which guarantees that they match the declaration. This can be disabled:
Taro.config.validate_responses = false
The following type names are available by default and can be used as type:
/array_of:
/page_of:
arguments:
'Boolean'
- accepts and renderstrue
orfalse
'Date'
- accepts and renders a date string in ISO8601 format'DateTime'
- an alias for'Time'
'Float'
'FreeForm'
- accepts and renders any JSON-serializable object, use with care'Integer'
'NoContent'
- renders an empty object, for use withstatus: :no_content
'String'
'Time'
- accepts and renders a time string in ISO8601 format'Timestamp'
- renders aTime
as unix timestamp integer and turns incoming integers into aTime
'UUID'
- accepts and renders UUIDs
Also, when using the generator, ErrorsType
and ErrorDetailsType
are generated as a starting point for unified error presentation. ErrorsType
can render invalid ActiveRecord
instances, ActiveModel::Errors
and other data structures.
EnumType
can be inherited from to define shared enums:
class SeverityEnumType < EnumType
value 'info'
value 'warning'
value 'debacle'
end
class ErrorType < ObjectType
field :severity, type: 'SeverityEnumType', null: false
end
Inline enums are also possible. Unlike EnumType classes, these are inlined in the OpenAPI export and not extracted into refs.
class ErrorType < ObjectType
field :severity, type: 'String', enum: %w[info warning debacle], null: false
end
Hook into the DSL in your base controller(s):
class ApiBaseController < ApplicationController
def self.api(...)
super
returns code: :not_found, type: 'MyErrorType', desc: 'The record was not found'
end
rescue_from ActiveRecord::RecordNotFound, with: :render_not_found
def render_not_found
render json: MyErrorType.render(something), status: :not_found
end
end
class AuthenticatedApiController < ApiBaseController
def self.api(...)
super
returns code: :unauthorized, type: 'MyErrorType'
end
# ... rescue_from ... render ...
end
Use ActiveSupport::CurrentAttributes.
class BikeType < ObjectType
field :secret_name, type: 'String', null: true
def secret_name
Current.user.superuser? ? object.secret_name : nil
end
end
First of all, if you don't need a better OpenAPI export, or better support for hashes and arrays, it might not be worth it.
If you do:
- note that
taro
currently only supports the latest OpenAPI standard (instead of v2 likeapipie-rails
) - extract complex param declarations into InputTypes
- extract complex response declarations into ObjectTypes
- replace
required: true
withnull: false
andrequired: false
withnull: true
For a step-by-step migration, you might want to make taro
use a different DSL then apipie
:
# config/initializers/taro.rb
%i[api param returns].each do |m|
Taro::Rails::DSL.alias_method("taro_#{m}", m) # `taro_api` etc.
Taro::Rails::DSL.define_method(m) { |*a, **k, &b| super(*a, **k, &b) }
end
module BikeUpdateDesc
extend ActiveSupport::Concern
included do
api 'Update a bike', description: 'Long description', tags: ['Bikes']
# lots of params and returns ...
end
end
class BikesController < ApplicationController
include BikeUpdateDesc
def update # ...
end
Why e.g. field :id, type: 'UUID'
instead of field :id, type: UUID
?
The purpose of this is to reduce unnecessary autoloading of the whole type dependency tree in dev and test environments.
Yes.
# Implement ::derive_from in your custom type.
class PreviewType < Taro::Types::Scalar::StringType
singleton_class.attr_reader :type_to_preview
def self.derive_from(other_type)
self.type_to_preview = other_type
end
def coerce_response
type_to_preview.new(object).coerce_response.to_s.truncate(100)
end
end
# Make it available in the DSL, e.g. in an initializer.
Taro::Types::BaseType.define_derived_type :preview, 'PreviewType'
# Usage:
class MyController < ApplicationController
returns code: :ok, preview_of: 'BikeType'
def show
render json: BikeType.preview.render(Bike.find(params[:id]))
end
end
- warning/raising for undeclared input params (currently they are ignored)
- usage without rails is possible but not convenient yet
- rspec matchers for testing
- sum types
- api doc rendering based on export (e.g. rails engine with web ui)
- query logs metadata
- type-level deprecation
- maybe make
type:
optional for path params as they're always strings anyway - various openapi features
- non-JSON content types (e.g. for file uploads)
- examples
- array minItems, maxItems, uniqueItems
- mixed arrays
- mixed enums
- nullable enums
- string format specifications (e.g. binary, int64, password ...)
- string pattern specifications
- string minLength and maxLength
- number minimum, exclusiveMinimum, maximum, multipleOf
- readOnly, writeOnly
After checking out the repo, run bin/setup
to install dependencies. Then, run rake spec
to run the tests. You can also run bin/console
for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run bundle exec rake install
. To release a new version, update the version number in version.rb
, and then run bundle exec rake release
, which will create a git tag for the version, push git commits and the created tag, and push the .gem
file to rubygems.org.
Bug reports and pull requests are welcome on GitHub at https://github.com/taro-rb/taro.
The gem is available as open source under the terms of the MIT License.