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

57 lines
1.3 KiB
Ruby

# frozen_string_literal: true
class ApplicationController < ActionController::Base
include Pundit
before_action :set_raven_context
protect_from_forgery with: :exception, prepend: true, unless: :json_request?
after_action :verify_authorized, except: :index
after_action :verify_policy_scoped, only: :index
rescue_from ActiveRecord::RecordNotFound, with: :not_found
rescue_from NotAuthorizedError, with: :unauthorized
helper_method :current_account
private
def current_account
@current_account ||= current_user&.account
@current_account ||= Account.guests.find_by(id: session[:guest_account_id])
end
def pundit_user
@pundit_user ||= ApplicationPolicy::Context.new(
account: current_account&.guest? ? nil : current_account,
guest_account: current_account,
)
end
def set_raven_context
Raven.user_context id: current_user.id if user_signed_in?
Raven.extra_context params: params.to_unsafe_h, url: request.url
end
def json_request?
request.format.json?
end
def not_found
render status: :not_found, json: {}
end
def unauthorized
render status: :unauthorized, json: {}
end
def method_not_allowed
render status: :method_not_allowed, json: {}
end
def remember_if_guest_account(account)
session[:guest_account_id] = account.id if account.guest?
end
end