Sha256: 2d8f796f9858dba95c2c84571885b20e69bf22df2d5ed8cf23ec3fa00d515e7c

Contents?: true

Size: 1.04 KB

Versions: 4

Compression:

Stored size: 1.04 KB

Contents

module Effective
  class DatatablesController < ApplicationController
    skip_log_page_views quiet: true if defined?(EffectiveLogging)

    # This will respond to both a GET and a POST
    def show
      begin
        @datatable = EffectiveDatatables.find(params[:id])
        @datatable.view = view_context

        EffectiveDatatables.authorize!(self, :index, @datatable.collection_class)

        render json: @datatable.to_json
      rescue => e
        EffectiveDatatables.authorized?(self, :index, @datatable.try(:collection_class))
        render json: error_json(e)

        ExceptionNotifier.notify_exception(e) if defined?(ExceptionNotifier)
        raise e if Rails.env.development?
      end

    end

    private

    def error_json(e)
      {
        data: [],
        draw: params[:draw].to_i,
        effective_datatables_error: (e.message.presence unless e.class.name.include?('ActiveRecord::')) || 'unexpected operation',
        recordsTotal: 0,
        recordsFiltered: 0,
        aggregates: [],
        charts: {}
      }
    end

  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
effective_datatables-4.3.4 app/controllers/effective/datatables_controller.rb
effective_datatables-4.3.3 app/controllers/effective/datatables_controller.rb
effective_datatables-4.3.2 app/controllers/effective/datatables_controller.rb
effective_datatables-4.3.1 app/controllers/effective/datatables_controller.rb