Sha256: 5b7e5986ffe00e97a63ae7f2c400cb01d91544199bce09f357f254e2e983cc30

Contents?: true

Size: 1.1 KB

Versions: 5

Compression:

Stored size: 1.1 KB

Contents

require 'effective_bootstrap'
require 'effective_resources'
require 'effective_datatables/engine'
require 'effective_datatables/version'

module EffectiveDatatables
  mattr_accessor :authorization_method

  mattr_accessor :default_length
  mattr_accessor :html_class

  mattr_accessor :actions_column # A Hash
  mattr_accessor :debug

  def self.setup
    yield self
  end

  def self.authorized?(controller, action, resource)
    @_exceptions ||= [Effective::AccessDenied, (CanCan::AccessDenied if defined?(CanCan)), (Pundit::NotAuthorizedError if defined?(Pundit))].compact

    return !!authorization_method unless authorization_method.respond_to?(:call)
    controller = controller.controller if controller.respond_to?(:controller) # Do the right thing with a view

    begin
      !!(controller || self).instance_exec((controller || self), action, resource, &authorization_method)
    rescue *@_exceptions
      false
    end
  end

  def self.authorize!(controller, action, resource)
    raise Effective::AccessDenied.new('Access Denied', action, resource) unless authorized?(controller, action, resource)
  end

end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
effective_datatables-4.2.0 lib/effective_datatables.rb
effective_datatables-4.1.1 lib/effective_datatables.rb
effective_datatables-4.1.0 lib/effective_datatables.rb
effective_datatables-4.0.6 lib/effective_datatables.rb
effective_datatables-4.0.5 lib/effective_datatables.rb