Class: Tolliver::Services::Policies::Instantly

Inherits:
Object
  • Object
show all
Defined in:
lib/tolliver/services/policies/instantly.rb

Instance Method Summary collapse

Instance Method Details

#deliver(notification_delivery) ⇒ Object



17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# File 'lib/tolliver/services/policies/instantly.rb', line 17

def deliver(notification_delivery)

  # Input validation
  return nil if notification_delivery.nil? || notification_delivery.policy != :instantly

  # Nothing to do
  return 0 if notification_delivery.sent_count == notification_delivery.receivers_count

  # Get batch of receivers prepared for send
  notification_receivers = notification_delivery.notification_receivers #.where(sent_at: nil)

  # Send entire batch
  sent_counter = 0
  notification_receivers.each do |notification_receiver|
    sent_counter += 1 if notification_delivery.method_service.deliver(notification_receiver)
  end

  # Is postponed
  notification_delivery.is_postponed = false

  # Update statistics
  notification_delivery.sent_count += sent_counter
  notification_delivery.sent_at = Time.current if notification_delivery.sent_count == notification_delivery.receivers_count

  # Save
  notification_delivery.save

  (notification_delivery.receivers_count - notification_delivery.sent_count)
end