0.0
No commit activity in last 3 years
No release in over 3 years
Gem to handle with parameters according to jsonapi specification
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.11
~> 10.0
~> 3.0

Runtime

 Project Readme

Jsonapi::Params

This gem handles the parameters of a request that uses the jsonapi specification and provides simple control over input parameters and manipulation of attributes, relationships and other...

Installation

Add this line to your application's Gemfile:

gem 'jsonapi-params'

And then execute:

$ bundle

Or install it yourself as:

$ gem install jsonapi-params

Usage

To use jsonapi-params you should create a class to handle with your parameters. Example:

class AuthorParam
  include JSONAPI::Param

  params :name
end

class ArticleParam
  include JSONAPI::Param

  params :title, :text, :other_text

  belongs_to :author
end

article = ArticleParam.new(
  'data' => {
    'id' => 1,
    'type' => 'x',
    'attributes' => {
      'title' => 'The guy',
      'text' => 'Loren Ipsun',
      'other-text' => 'Hello'
    },
    'relationships' => {
      'author' => {
        'data' => {
          'id' => 123,
          'type' => 'authors',
          'attributes' => {
            'name' => 'Antonio'
          }
        }
      }
    }
  }
)

Available methods to handle with params

param

Adds a parameter to whitelist attributes

class AuthorParam
  param :name
  param :gender
end

params

Adds a list of parameters to whitelist attributes

class AuthorParam
  params :name, :gender
end

belongs_to

Creates a one-to-one relationship to update or create objects

class AuthorParam
  param :name
end

class ArticleParam
  param :title

  belongs_to :author
end

attributes

Returns a list of attributes based on whitelist.

class ArticleParam
  param :title
end

article_params = ArticleParam.new('data' => { 'attributes' => { 'title' => 'The day' }})
article_params.attributes # { 'title' => 'The day' }

TODO

  • one-to-many relationships
  • many-to-many relationships
  • metadata

Development

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 tags, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/jsonapi-params.

License

jsonapi-params is released under the MIT License.