Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/trailblazer/roar-jsonapi

JSON API support for Roar.
https://github.com/trailblazer/roar-jsonapi

hypermedia json-api rest ruby

Last synced: 6 days ago
JSON representation

JSON API support for Roar.

Awesome Lists containing this project

README

        

# Roar JSON API

_Resource-Oriented Architectures in Ruby._

[![Gitter Chat](https://badges.gitter.im/trailblazer/chat.svg)](https://gitter.im/trailblazer/chat)
[![TRB Newsletter](https://img.shields.io/badge/TRB-newsletter-lightgrey.svg)](http://trailblazer.to/newsletter/)
![.github/workflows/tests.yml](https://github.com/trailblazer/roar-jsonapi/workflows/.github/workflows/tests.yml/badge.svg)
[![Gem Version](https://badge.fury.io/rb/roar-jsonapi.svg)](http://badge.fury.io/rb/roar-jsonapi)

Roar JSON API provides support for [JSON API](http://jsonapi.org/), a specification for building APIs in JSON. It can render _and_ parse singular and collection documents.

### Resource

A minimal representation of a Resource can be defined as follows:

```ruby
require 'roar/json/json_api'

class SongsRepresenter < Roar::Decorator
include Roar::JSON::JSONAPI.resource :songs

attributes do
property :title
end
end
```

Properties (or attributes) of the represented model are defined within an
`attributes` block.

An `id` property will automatically defined when using Roar JSON API.

### Relationships

To define relationships, use `::has_one` or `::has_many` with either an inline
or a standalone representer (specified with the `extend:` or `decorates:` option).

```ruby
class SongsRepresenter < Roar::Decorator
include Roar::JSON::JSONAPI.resource :songs

has_one :album do
property :title
end

has_many :musicians, extend: MusicianRepresenter
end
```

### Meta information

Meta information can be included into rendered singular and collection documents in two ways.

You can define meta information on your collection object and then let Roar compile it.

```ruby
class SongsRepresenter < Roar::Decorator
include Roar::JSON::JSONAPI.resource :songs

meta toplevel: true do
property :page
property :total
end
end
```

Your collection object must expose the respective methods.

```ruby
collection.page #=> 1
collection.total #=> 12
```

This will render the `{"meta": {"page": 1, "total": 12}}` hash into the JSON API document.

Alternatively, you can provide meta information as a hash when rendering. Any values also defined on your object will be overriden.

```ruby
collection.to_json(meta: {page: params["page"], total: collection.size})
```

Both methods work for singular documents too.

```ruby
class SongsRepresenter < Roar::Decorator
include Roar::JSON::JSONAPI.resource :songs

meta do
property :label
property :format
end
end
```

```ruby
song.to_json(meta: { label: 'EMI' })
```

If you need more functionality (and parsing), please let us know.

### Usage

As JSON API per definition can represent singular models and collections you have two entry points.

```ruby
SongsRepresenter.prepare(Song.find(1)).to_json
SongsRepresenter.prepare(Song.new).from_json("..")
```

Singular models can use the representer module directly.

```ruby
SongsRepresenter.for_collection.prepare([Song.find(1), Song.find(2)]).to_json
SongsRepresenter.for_collection.prepare([Song.new, Song.new]).from_json("..")
```

Parsing currently works great with singular documents - for collections, we are still working out how to encode the application semantics. Feel free to help.

## Support

Questions? Need help? Free 1st Level Support on irc.freenode.org#roar !
We also have a [mailing list](https://groups.google.com/forum/?fromgroups#!forum/roar-talk), yiha!

## License

Roar is released under the [MIT License](http://www.opensource.org/licenses/MIT).