Mini Api
A gem to standardize json responses in Rails applications, highly inspired on Responders
Table of Contents
- Usage
- Respondering json
- Data Serialization
- Success and failure actions
- Errors
- Message
- Transform keys
- Overriding response
- Pagination
- Contributing
- License
Installation
Add this line to your application's Gemfile:
gem "mini_api"And then execute:
$ bundleYou must install Kaminari to handle pagination
Usage
After install the gem, include the MiniApi module into your ApplicationController or other parent controller
class ApplicationController < ActionController::Base
include MiniApi
endThis include three methods in your controllers: render_json, page and per_page
The methods page and per_page will handle the params: page and per_page respectively
Respondering json
In your controller you only need to call the render_json method informing what you want to send. Example:
class UsersController < ApplicationController
def show
user = User.find(params[:id])
render_json user
end
endThe generated json will be like:
{
"success": true,
"data": { }, // user data here
"message": ""
}If your data is a ActiveRecord::Relation, the behavior is the same, with pagination data added to meta key
class UsersController < ApplicationController
def index
users = User.all
render_json users
end
endThe response will be like:
{
"success": true,
"data": { }, // users here
"meta": {
"current_page": 1,
"next_page": 2,
"prev_page": null,
"total_pages": 10,
"total_records": 100
}
}Data Serialization
This gem is integrated to Alba to create your resources. A simple resource example:
class UserResource
include Alba::Resource
attributes :id, :name, :email
endWhen the render_json methods receive an instance of user or a ActiveRecord::Relation of users will search by UserResource.
If you have a nested controller like: Api::V1::UsersController, mini_api will search by resources in controller namespace.
First will search per Api::V1::UserResource, after Api::UserResource and then UserResource until find.
That way, even if your controller and resource are defined in different namespace levels, MiniApi will find.
Success and failure actions
Many times, our controller actions need to persist or validate some data coming from request, the default approach to do that is like:
class UsersController < ApplicationController
def new
user = User.new(user_params)
if user.save
render json: user, status: :created
else
render json: user.errors.messages, status: :unprocessable_entity
end
end
endBut, with mini_api, you could simplify the action doing like:
class UsersController < ApplicationController
def new
user = User.new(user_params)
user.save
render_json user
end
endIf the user was created successfully, then the response will be like:
{
"success": true,
"data": { }, // user data here
"message": "User was successfully created."
}with status_code 201
But, if user is not valid, then the response will be like:
{
"success": false,
"errors": { }, // user errors here
"message": "User could not be created."
}witht status_code 422
The message key is different based on actions on informed model: create, update, and destroy
You can respond any type of data, but ActiveRecord/ActiveModel::Model and ActiveRecord::Relation has a special treatment as shown above
Errors
To show errors of a model, by default will use the errors.messages method, but MiniApi adds an ability to Alba to create a error resource
as a nested class in your resource. Example:
class UserResource
include Alba::Resource
attributes :id, :name, :email
class Error
include Alba::Resource
attribute :user do
object.errors.full_messages
end
end
endThe response will be like:
{
"success": false,
"errors": {
"user": ["First name can't be blank"]
},
"message": "User could not be created."
}You can create serializers for non ActiveRecord and add a nested Error class too
Message
The I18n path for the key message is mini_api.messages.actions, the controller action name and the notice for success actions
or alert for failure actions. Example mini_api.messages.actions.create.notice
By default support the actions: create, update and delete, but you can add more actions to translate
You can add translation based on models, changing the action key for your model name. Example:
mini_api.messages.model_name.create.alert. With this, is more easy personalize messages
It is possible define a translation based on controller, useful if you use nested controlers. The path is:
min_api.messages.controller_name.action_name.alert
If you would like to send the message as null, has to use the :empty symbol, like:
render_json @object, message: :emptyTransform keys
It is possible to transform the keys of request and response. By default, will transform to snake_case, but the possible values are snake_case, camel_lower and camel_case
To change the transform operation, simply adds a initializer on initilizations folder with content:
MiniApi::Config.configure do |config|
config.transform_params_keys_to = :snake_case
config.transform_response_keys_to = :camel_lower
endThe option transform_params_keys_to will transform request params.
The option transform_response_keys_to will transform responses.
Overriding response
You can override the status, message and sucess keys simply informing values to render_json. Example:
class UsersController < ApplicationController
def new
user = User.new(user_params)
if user.save
render_json user, message: 'custom message'
else
render_json user.errors.messages, status: :bad_request, success: true
end
end
endThis way, the response will contain the informed values
Pagination
This plugin handle pagination using kaminari gem. The params to evaluate pagination are page and per_page
if no page is informed, by default will use page 1
Default value of per_page is 25. Only specific values are permitted to per_page, they are: 10, 25, 50, 100
If the value it is none of those, so the default value is used
Contributing
- Fork it
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -am 'Add some feature')
- Push to the branch (git push origin my-new-feature)
- Create new Pull Request
License
The gem is available as open source under the terms of the MIT License.