1
0
Fork 0
This repository has been archived on 2023-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/app/controllers/application_controller.rb

77 lines
1.9 KiB
Ruby

# frozen_string_literal: true
class ApplicationController < ActionController::Base
include Pundit
protect_from_forgery with: :exception, prepend: true, unless: :json_request?
before_action :set_raven_context
after_action :verify_authorized, except: :index
after_action :verify_policy_scoped, only: :index
rescue_from ActiveRecord::RecordNotFound, with: :render_not_found
rescue_from Pundit::NotAuthorizedError, with: :render_forbidden
helper_method :current_account
private
def current_account
@current_account ||= current_user&.account
end
alias pundit_user current_account
def set_raven_context
Raven.user_context(
account_id: current_account&.id,
user_id: current_user&.id,
)
Raven.extra_context params: params.to_unsafe_h, url: request.url
end
def json_request?
request.format.json?
end
def render_not_found
respond_to do |format|
format.html { render status: :not_found, template: 'errors/not_found' }
format.json { render status: :not_found, json: {} }
end
end
def render_forbidden
respond_to do |format|
format.html { render status: :forbidden, template: 'errors/forbidden' }
format.json { render status: :forbidden, json: {} }
end
end
def render_method_not_allowed
respond_to do |format|
format.html do
render status: :method_not_allowed,
template: 'errors/method_not_allowed'
end
format.json { render status: :method_not_allowed, json: {} }
end
end
def translate_flash(*args)
options = args.extract_options!.symbolize_keys
case args.size
when 0
translate action_name, options.merge(scope: [:flash, controller_path])
when 1
translate args.first,
options.merge(scope: [:flash, controller_path, action_name])
else
raise ArgumentError, 'Invalid usage'
end
end
end