Created
November 4, 2020 15:04
-
-
Save alxekb/57d02c89440a75e8e20b127ccf8b4090 to your computer and use it in GitHub Desktop.
rails api boilerplate example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# app/controllers/concerns/exception_handler.rb | |
module ExceptionHandler | |
extend ActiveSupport::Concern | |
class MissingToken < StandardError; end | |
class InvalidToken < StandardError; end | |
class AuthenticationError < StandardError; end | |
included do | |
rescue_from ExceptionHandler::MissingToken, with: :four_twenty_two | |
rescue_from ExceptionHandler::InvalidToken, with: :unauthorized_request | |
rescue_from ExceptionHandler::AuthenticationError, with: :unauthorized_request | |
end | |
private | |
def four_twenty_two(error) | |
json_response({ message: error.message }, :unprocessible_entity) | |
end | |
def unauthorized_request(error) | |
json_response({ message: error.message }, :unauthorized) | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class ApplicationController < ActionController::API | |
include Response | |
include ExceptionHandler | |
# ... | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def destroy | |
item = Item.find_by(id: params[:id]) | |
raise(ExceptionHandler::NotAuthorized, Message.unauthorized_request) | |
if item.destroy | |
# ..... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# app/lib/message.rb | |
class Message | |
def self.not_found(record = 'record') | |
"Sorry, #{record} nof found!" | |
end | |
def self.invalid_credentials | |
'Invalid credentials.' | |
end | |
def self.unauthorized_request | |
'Unauthorized request.' | |
end | |
def self.missing_token | |
'Missing token' | |
end | |
def self.invalid_token | |
'Invaild token' | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# app/controllers/concerns/response.rb | |
module Response | |
def json_response(object, status = :ok) | |
render json: object, status: status | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment