Class: ActiveSupport::Callbacks::CallbackSequence

Inherits:
Object
  • Object
show all
Defined in:
lib/active_support/callbacks.rb

Overview

Execute before and after filters in a sequence instead of chaining them with nested lambda calls, see: github.com/rails/rails/issues/18011

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(nested = nil, call_template = nil, user_conditions = nil) ⇒ CallbackSequence

:nodoc:



518
519
520
521
522
523
524
525
# File 'lib/active_support/callbacks.rb', line 518

def initialize(nested = nil, call_template = nil, user_conditions = nil)
  @nested = nested
  @call_template = call_template
  @user_conditions = user_conditions

  @before = nil
  @after = nil
end

Instance Attribute Details

#nestedObject (readonly)

Returns the value of attribute nested.



547
548
549
# File 'lib/active_support/callbacks.rb', line 547

def nested
  @nested
end

Instance Method Details

#after(after) ⇒ Object



533
534
535
536
537
# File 'lib/active_support/callbacks.rb', line 533

def after(after)
  @after ||= []
  @after.push(after)
  self
end

#around(call_template, user_conditions) ⇒ Object



539
540
541
# File 'lib/active_support/callbacks.rb', line 539

def around(call_template, user_conditions)
  CallbackSequence.new(self, call_template, user_conditions)
end

#before(before) ⇒ Object



527
528
529
530
531
# File 'lib/active_support/callbacks.rb', line 527

def before(before)
  @before ||= []
  @before.unshift(before)
  self
end

#expand_call_template(arg, block) ⇒ Object



553
554
555
# File 'lib/active_support/callbacks.rb', line 553

def expand_call_template(arg, block)
  @call_template.expand(arg.target, arg.value, block)
end

#final?Boolean

Returns:

  • (Boolean)


549
550
551
# File 'lib/active_support/callbacks.rb', line 549

def final?
  !@call_template
end

#invoke_after(arg) ⇒ Object



561
562
563
# File 'lib/active_support/callbacks.rb', line 561

def invoke_after(arg)
  @after&.each { |a| a.call(arg) }
end

#invoke_before(arg) ⇒ Object



557
558
559
# File 'lib/active_support/callbacks.rb', line 557

def invoke_before(arg)
  @before&.each { |b| b.call(arg) }
end

#skip?(arg) ⇒ Boolean

Returns:

  • (Boolean)


543
544
545
# File 'lib/active_support/callbacks.rb', line 543

def skip?(arg)
  arg.halted || !@user_conditions.all? { |c| c.call(arg.target, arg.value) }
end