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...
Add this line to your application's Gemfile:
gem 'jsonapi-params'
And then execute:
$ bundle
Or install it yourself as:
$ gem install jsonapi-params
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'
}
}
}
}
}
)
Adds a parameter to whitelist attributes
class AuthorParam
param :name
param :gender
end
Adds a list of parameters to whitelist attributes
class AuthorParam
params :name, :gender
end
Creates a one-to-one relationship to update or create objects
class AuthorParam
param :name
end
class ArticleParam
param :title
belongs_to :author
end
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' }
- one-to-many relationships
- many-to-many relationships
- metadata
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.
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/jsonapi-params.
jsonapi-params is released under the MIT License.