Sha256: aa3cf6628907d00b966b633f72fbcc1218ba7a37993bc61f35202094e6120c8d

Contents?: true

Size: 1.97 KB

Versions: 11

Compression:

Stored size: 1.97 KB

Contents

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

module EffectiveDatatables
  AVAILABLE_LOCALES = %w(en es nl)

  mattr_accessor :authorization_method

  mattr_accessor :default_length
  mattr_accessor :html_class
  mattr_accessor :save_state

  mattr_accessor :cookie_max_size
  mattr_accessor :cookie_domain
  mattr_accessor :cookie_tld_length

  mattr_accessor :debug

  alias_method :max_cookie_size, :cookie_max_size
  alias_method :max_cookie_size=, :cookie_max_size=

  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

  def self.find(id)
    id = id.to_s.gsub(/-\d+\z/, '').gsub('-', '/')
    klass = (id.classify.safe_constantize || id.classify.pluralize.safe_constantize)

    klass.try(:new) || raise('unable to find datatable')
  end

  # Locale is coming from view. I think it can be dynamic.
  # We currently support: en, es, nl
  def self.language(locale)
    @_languages ||= {}

    locale = :en unless AVAILABLE_LOCALES.include?(locale.to_s)

    @_languages[locale] ||= begin
      path = Gem::Specification.find_by_name('effective_datatables').gem_dir + "/app/assets/javascripts/dataTables/locales/#{locale}.lang"
      JSON.parse(File.read(path)).to_json
    end
  end

end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
effective_datatables-4.6.2 lib/effective_datatables.rb
effective_datatables-4.6.1 lib/effective_datatables.rb
effective_datatables-4.6.0 lib/effective_datatables.rb
effective_datatables-4.5.7 lib/effective_datatables.rb
effective_datatables-4.5.6 lib/effective_datatables.rb
effective_datatables-4.5.5 lib/effective_datatables.rb
effective_datatables-4.5.4 lib/effective_datatables.rb
effective_datatables-4.5.3 lib/effective_datatables.rb
effective_datatables-4.5.2 lib/effective_datatables.rb
effective_datatables-4.5.1 lib/effective_datatables.rb
effective_datatables-4.5.0 lib/effective_datatables.rb