foodsoft/app/controllers/api/v1/base_controller.rb

82 lines
2.7 KiB
Ruby
Raw Normal View History

2018-10-13 20:16:35 +02:00
class Api::V1::BaseController < ApplicationController
include Concerns::AuthApi
2018-10-13 20:16:35 +02:00
protect_from_forgery with: :null_session
before_action :skip_session
2018-10-13 15:15:43 +02:00
before_action :authenticate
2018-10-13 20:16:35 +02:00
rescue_from ActiveRecord::RecordNotFound, with: :not_found_handler
rescue_from ActiveRecord::RecordNotSaved, with: :not_acceptable_handler
rescue_from ActiveRecord::RecordInvalid, with: :not_acceptable_handler
rescue_from Api::Errors::PermissionRequired, with: :permission_required_handler
private
# @return [Ordergroup] Current user's ordergroup, or +nil+ if no valid token or user has no ordergroup.
def current_ordergroup
current_user.try(:ordergroup)
end
def require_ordergroup
authenticate
return if current_ordergroup.present?
raise Api::Errors::PermissionRequired, 'Forbidden, must be in an ordergroup'
2018-10-13 20:16:35 +02:00
end
def require_minimum_balance
minimum_balance = FoodsoftConfig[:minimum_balance] or return
return unless current_ordergroup.account_balance < minimum_balance
raise Api::Errors::PermissionRequired, t('application.controller.error_minimum_balance', min: minimum_balance)
end
def require_enough_apples
return unless current_ordergroup.not_enough_apples?
s = t('group_orders.messages.not_enough_apples', apples: current_ordergroup.apples,
stop_ordering_under: FoodsoftConfig[:stop_ordering_under])
raise Api::Errors::PermissionRequired, s
end
def require_config_enabled(config)
return if FoodsoftConfig[config]
raise Api::Errors::PermissionRequired, t('application.controller.error_not_enabled', config: config)
end
2018-10-13 20:16:35 +02:00
def skip_session
request.session_options[:skip] = true
end
def not_found_handler(e)
# remove where-clauses from error message (not suitable for end-users)
msg = e.message.try { |m| m.sub(/\s*\[.*?\]\s*$/, '') } || 'Not found'
render status: :not_found, json: { error: 'not_found', error_description: msg }
2018-10-13 20:16:35 +02:00
end
def not_acceptable_handler(e)
msg = e.message || 'Data not acceptable'
render status: :unprocessable_entity, json: { error: 'not_acceptable', error_description: msg }
2018-10-13 20:16:35 +02:00
end
def doorkeeper_unauthorized_render_options(error:)
{ json: { error: error.name, error_description: error.description } }
2018-10-13 20:16:35 +02:00
end
def doorkeeper_forbidden_render_options(error:)
{ json: { error: error.name, error_description: error.description } }
end
2018-10-13 20:16:35 +02:00
def permission_required_handler(e)
msg = e.message || 'Forbidden, user has no access'
render status: :forbidden, json: { error: 'forbidden', error_description: msg }
2018-10-13 20:16:35 +02:00
end
# @todo something with ApplicationHelper#show_user
def show_user(user = current_user, **_options)
2018-10-13 20:16:35 +02:00
user.display
end
end