Sha256: 9392ff7537cac20f4697ed6fcc69dff70abbc77f05c6597ad5b6abba6d479370

Contents?: true

Size: 1.75 KB

Versions: 26

Compression:

Stored size: 1.75 KB

Contents

# Simpified version of callbacks
# Does not support if
class Jets::Controller
  module Callbacks
    extend ActiveSupport::Concern
    included do
      class_attribute :before_actions
      self.before_actions = []
      class_attribute :after_actions
      self.after_actions = []

      class << self
        def before_action(meth, options={})
          self.before_actions += [[meth, options]]
        end

        def prepend_before_action(meth, options={})
          self.before_actions = [[meth, options]] + self.before_actions
        end

        alias_method :append_before_action, :before_action

        def after_action(meth, options={})
          self.after_actions += [[meth, options]]
        end

        def prepend_after_action(meth, options={})
          self.after_actions = [[meth, options]] + self.after_actions
        end

        alias_method :append_after_action, :after_action
      end
    end # included

    # Instance Methods
    # define run_before_actions and run_after_actions
    # returns true if all actions were run, false if break_if condition yielded `true`
    [:before, :after].each do |type|
      define_method "run_#{type}_actions" do |break_if: nil|
        called_method = @meth.to_sym
        callbacks = self.class.send("#{type}_actions")
        callbacks.each do |array|
          callback, options = array

          except = options[:except]
          next if except && except.include?(called_method)

          only = options[:only]
          if only
            send(callback) if only.include?(called_method)
          else
            send(callback)
          end
          @last_callback_name = callback

          return false if !break_if.nil? && break_if.call
        end
        true
      end
    end
  end # ClassOptions
end

Version data entries

26 entries across 26 versions & 2 rubygems

Version Path
jets-1.8.7 lib/jets/controller/callbacks.rb
jets-1.8.6 lib/jets/controller/callbacks.rb
jets-1.8.5 lib/jets/controller/callbacks.rb
jets-1.8.4 lib/jets/controller/callbacks.rb
jets-1.8.3 lib/jets/controller/callbacks.rb
jets-1.8.2 lib/jets/controller/callbacks.rb
jets-1.8.1 lib/jets/controller/callbacks.rb
jets-1.8.0 lib/jets/controller/callbacks.rb
jets-1.7.2 lib/jets/controller/callbacks.rb
jets-1.7.1 lib/jets/controller/callbacks.rb
jets-1.7.0 lib/jets/controller/callbacks.rb
jets-fs-1.6.10 lib/jets/controller/callbacks.rb
jets-1.6.9 lib/jets/controller/callbacks.rb
jets-1.6.8 lib/jets/controller/callbacks.rb
jets-1.6.7 lib/jets/controller/callbacks.rb
jets-1.6.6 lib/jets/controller/callbacks.rb
jets-1.6.5 lib/jets/controller/callbacks.rb
jets-1.6.4 lib/jets/controller/callbacks.rb
jets-1.6.3 lib/jets/controller/callbacks.rb
jets-1.6.2 lib/jets/controller/callbacks.rb