Sha256: a58d46e0249534a35596a455b676b8d660312f29300c5c9ede089036f571f4d6

Contents?: true

Size: 1.8 KB

Versions: 9

Compression:

Stored size: 1.8 KB

Contents

module Agilibox::ApiControllerConcern
  extend ActiveSupport::Concern

  private

  def render_json(json = {}, options = {})
    json.reverse_merge!(current_user: current_user)
    options.reverse_merge!(current_user: current_user)

    json = Agilibox::MiniModelSerializer::Serialize.call(json, options)

    render options.merge(json: json)
  end

  def render_json_error(any_object, options = {})
    if any_object.is_a?(ActiveModel::Validations)
      json = {
        :error        => json_error_string_for_model(any_object),
        :model_errors => json_errors_hash_for_model(any_object),
      }
    elsif any_object.is_a?(String)
      json = {error: any_object}
    else
      json = any_object
    end

    options[:status] ||= :unprocessable_entity

    render_json(json, options)
  end

  def json_errors_hash_for_model(object)
    object.errors
      .to_hash
      .map { |a, m| [a, message: m.first, full_message: object.errors.full_message(a, m.first)] }
      .uniq(&:first)
      .to_h
  end

  def json_error_string_for_model(object)
    json_errors_hash_for_model(object).values.pluck(:full_message).join(", ")
  end

  def render_not_found
    render_json_error t("errors.not_found"), status: :not_found
  end

  def render_forbidden
    render_json_error t("errors.forbidden"), status: :forbidden
  end

  def render_unauthorized
    render_json_error t("errors.unauthorized"), status: :unauthorized
  end

  def render_forbidden_or_unauthorized
    current_user ? render_unauthorized : render_forbidden
  end

  included do |controller|
    if controller < ActionController::Rescue
      if defined?(Pundit::NotAuthorizedError)
        rescue_from Pundit::NotAuthorizedError, with: :render_forbidden_or_unauthorized
      end

      rescue_from ActiveRecord::RecordNotFound, with: :render_not_found
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
agilibox-1.10.5 app/controllers/concerns/agilibox/api_controller_concern.rb
agilibox-1.10.2 app/controllers/concerns/agilibox/api_controller_concern.rb
agilibox-1.10.1 app/controllers/concerns/agilibox/api_controller_concern.rb
agilibox-1.10.0 app/controllers/concerns/agilibox/api_controller_concern.rb
agilibox-1.9.20 app/controllers/concerns/agilibox/api_controller_concern.rb
agilibox-1.9.19 app/controllers/concerns/agilibox/api_controller_concern.rb
agilibox-1.9.18 app/controllers/concerns/agilibox/api_controller_concern.rb
agilibox-1.9.17 app/controllers/concerns/agilibox/api_controller_concern.rb
agilibox-1.9.16 app/controllers/concerns/agilibox/api_controller_concern.rb